From b43eccd4cffed5bd1017c5821524fb6e49202f78 Mon Sep 17 00:00:00 2001 From: Sandeep Gupta Date: Sun, 18 Jun 2017 23:55:40 +0530 Subject: First commit --- 2.3-1/tests/unit_tests/double/test_imag.sci | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 2.3-1/tests/unit_tests/double/test_imag.sci (limited to '2.3-1/tests/unit_tests/double/test_imag.sci') diff --git a/2.3-1/tests/unit_tests/double/test_imag.sci b/2.3-1/tests/unit_tests/double/test_imag.sci new file mode 100644 index 00000000..b89fec27 --- /dev/null +++ b/2.3-1/tests/unit_tests/double/test_imag.sci @@ -0,0 +1,11 @@ +function test_imag() + d0 = %pi + d2 = [1 2 3 4 ; 5 6 7 8 ; 9 10 11 12 ; 13 14 15 16] + z0 = d0 + %i * d0 + z2 = d2 + %i * d2 + + disp(imag(d0)) + disp(imag(z0)) + disp(imag(d2)) + disp(imag(z2)) +endfunction -- cgit