From 79a0de7c6623433170f4965f0a6f07ebfed27f16 Mon Sep 17 00:00:00 2001 From: jofret Date: Tue, 22 Jun 2010 15:31:55 +0000 Subject: separate float and double tests --- tests/unit_tests/float/test_float_Det.sci | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/unit_tests/float/test_float_Det.sci (limited to 'tests/unit_tests/float/test_float_Det.sci') 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 + + -- cgit