diff options
Diffstat (limited to 'tests/unit_tests/test_double_Expm.sci')
-rw-r--r-- | tests/unit_tests/test_double_Expm.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/unit_tests/test_double_Expm.sci b/tests/unit_tests/test_double_Expm.sci new file mode 100644 index 00000000..a084fb5a --- /dev/null +++ b/tests/unit_tests/test_double_Expm.sci @@ -0,0 +1,9 @@ +function test_double_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 |