From a555820564d9f2e95ca8c97871339d3a5a2081c3 Mon Sep 17 00:00:00 2001 From: Ankit Raj Date: Wed, 21 Jun 2017 10:26:59 +0530 Subject: Updated Scilab2C --- 2.3-1/tests/unit_tests/float/test_float_inv.sci | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 2.3-1/tests/unit_tests/float/test_float_inv.sci (limited to '2.3-1/tests/unit_tests/float/test_float_inv.sci') diff --git a/2.3-1/tests/unit_tests/float/test_float_inv.sci b/2.3-1/tests/unit_tests/float/test_float_inv.sci new file mode 100644 index 00000000..84b79350 --- /dev/null +++ b/2.3-1/tests/unit_tests/float/test_float_inv.sci @@ -0,0 +1,12 @@ +//SCI2C: DEFAULT_PRECISION= FLOAT +function test_float_inv() + d0 = %pi + d2 = [1 2 3 4 ; 4 5 1 8 ; 9 1 11 12 ; 13 14 15 16] + z0 = d0 + %i * d0 + z2 = d2 + %i * d2 + + disp(inv(d0)); + disp(inv(d2)); + disp(inv(z0)); + disp(inv(z2)); +endfunction -- cgit