summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/double/test_Expm.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_Expm.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_Expm.sci')
-rw-r--r--2.3-1/tests/unit_tests/double/test_Expm.sci9
1 files changed, 9 insertions, 0 deletions
diff --git a/2.3-1/tests/unit_tests/double/test_Expm.sci b/2.3-1/tests/unit_tests/double/test_Expm.sci
new file mode 100644
index 00000000..a0a1b137
--- /dev/null
+++ b/2.3-1/tests/unit_tests/double/test_Expm.sci
@@ -0,0 +1,9 @@
+function test_Expm()
+ b = [1 2 3 4 ; 5 6 7 8 ; 9 10 11 12 ; 13 14 15 16];
+ c = b*%i ;
+
+ disp(expm(b));
+ disp(expm(c));
+
+
+endfunction