diff options
author | yash1112 | 2017-07-07 21:20:49 +0530 |
---|---|---|
committer | yash1112 | 2017-07-07 21:20:49 +0530 |
commit | 3f52712f806fbd80d66dfdcaff401e5cf94dcca4 (patch) | |
tree | a8333b8187cb44b505b9fe37fc9a7ac8a1711c10 /tests/unit_tests/double/test_Expm.sci | |
download | scilab2c-3f52712f806fbd80d66dfdcaff401e5cf94dcca4.tar.gz scilab2c-3f52712f806fbd80d66dfdcaff401e5cf94dcca4.tar.bz2 scilab2c-3f52712f806fbd80d66dfdcaff401e5cf94dcca4.zip |
sci2c arduino updated
Diffstat (limited to 'tests/unit_tests/double/test_Expm.sci')
-rw-r--r-- | tests/unit_tests/double/test_Expm.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/unit_tests/double/test_Expm.sci b/tests/unit_tests/double/test_Expm.sci new file mode 100644 index 00000000..a0a1b137 --- /dev/null +++ b/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 |