diff options
Diffstat (limited to 'tests/unit_tests/float/test_float_Det.sci')
-rw-r--r-- | tests/unit_tests/float/test_float_Det.sci | 16 |
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 0000000..66519d9 --- /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 + + |