From 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 Mon Sep 17 00:00:00 2001 From: yash1112 Date: Fri, 7 Jul 2017 21:20:49 +0530 Subject: sci2c arduino updated --- 2.3-1/tests/unit_tests/double/test_sqrt.sci | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 2.3-1/tests/unit_tests/double/test_sqrt.sci (limited to '2.3-1/tests/unit_tests/double/test_sqrt.sci') diff --git a/2.3-1/tests/unit_tests/double/test_sqrt.sci b/2.3-1/tests/unit_tests/double/test_sqrt.sci new file mode 100644 index 00000000..aceecc94 --- /dev/null +++ b/2.3-1/tests/unit_tests/double/test_sqrt.sci @@ -0,0 +1,11 @@ +function test_sqrt() + d0 = %pi + d2 = [2 2 3 4 ; 4 5 6 8 ; 9 10 11 12 ; 13 14 15 16] + z0 = d0 + %i * d0 + z2 = d2 + %i * d2 + + disp(sqrt(d0)); + disp(sqrt(d2)); + disp(sqrt(z0)); + disp(sqrt(z2)); +endfunction \ No newline at end of file -- cgit