summaryrefslogtreecommitdiff
path: root/tests/unit_tests/float/test_float_Det.sci
diff options
context:
space:
mode:
authorAnkit Raj2017-06-21 10:26:59 +0530
committerAnkit Raj2017-06-21 10:26:59 +0530
commit958577cac90a99124cd673fde1926781d966d91f (patch)
tree134d9fe7f5b97a647cb055bb7b4c21820a749f49 /tests/unit_tests/float/test_float_Det.sci
downloadscilab2c-958577cac90a99124cd673fde1926781d966d91f.tar.gz
scilab2c-958577cac90a99124cd673fde1926781d966d91f.tar.bz2
scilab2c-958577cac90a99124cd673fde1926781d966d91f.zip
Updated Scilab2C
Diffstat (limited to 'tests/unit_tests/float/test_float_Det.sci')
-rw-r--r--tests/unit_tests/float/test_float_Det.sci16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/unit_tests/float/test_float_Det.sci b/tests/unit_tests/float/test_float_Det.sci
new file mode 100644
index 00000000..66519d97
--- /dev/null
+++ b/tests/unit_tests/float/test_float_Det.sci
@@ -0,0 +1,16 @@
+//SCI2C: DEFAULT_PRECISION= FLOAT
+function test_float_Det()
+
+ a = [1 2 3; 4 %pi 5; 4.5 -3 2];
+ disp(det(a));
+
+ b = %i * [1 2 3; 4 %pi 5; 4.5 -3 2];
+ disp(det(b));
+
+
+ disp(det(5));
+
+ disp(det(%i));
+endfunction
+
+