summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/double/test_acos.sci
diff options
context:
space:
mode:
authorAnkit Raj2017-06-21 10:26:59 +0530
committerAnkit Raj2017-06-21 10:26:59 +0530
commita555820564d9f2e95ca8c97871339d3a5a2081c3 (patch)
treeadb074b66a8e6750209880e6932305ce0a94c8bf /2.3-1/tests/unit_tests/double/test_acos.sci
downloadScilab2C-a555820564d9f2e95ca8c97871339d3a5a2081c3.tar.gz
Scilab2C-a555820564d9f2e95ca8c97871339d3a5a2081c3.tar.bz2
Scilab2C-a555820564d9f2e95ca8c97871339d3a5a2081c3.zip
Updated Scilab2C
Diffstat (limited to '2.3-1/tests/unit_tests/double/test_acos.sci')
-rw-r--r--2.3-1/tests/unit_tests/double/test_acos.sci11
1 files changed, 11 insertions, 0 deletions
diff --git a/2.3-1/tests/unit_tests/double/test_acos.sci b/2.3-1/tests/unit_tests/double/test_acos.sci
new file mode 100644
index 00000000..7d70675f
--- /dev/null
+++ b/2.3-1/tests/unit_tests/double/test_acos.sci
@@ -0,0 +1,11 @@
+function test_acos()
+ d0 = %pi
+ d2 = [1 2 3 4 ; 4 5 6 8 ; 9 10 11 12 ; 13 14 15 16]
+ z0 = d0 + %i * d0
+ z2 = d2 + %i * d2
+
+ acos(d0);
+ acos(d2);
+ acos(z0);
+ acos(z2);
+endfunction