diff options
author | jofret | 2010-06-22 15:33:27 +0000 |
---|---|---|
committer | jofret | 2010-06-22 15:33:27 +0000 |
commit | 01000e47c249b1d528f53095b9e116d99f1daa18 (patch) | |
tree | 992c99ce83bd0b7b98b3b8c87f2bec43a260dc71 /tests/unit_tests/double/test_Expm.sci | |
parent | 79a0de7c6623433170f4965f0a6f07ebfed27f16 (diff) | |
download | scilab2c-01000e47c249b1d528f53095b9e116d99f1daa18.tar.gz scilab2c-01000e47c249b1d528f53095b9e116d99f1daa18.tar.bz2 scilab2c-01000e47c249b1d528f53095b9e116d99f1daa18.zip |
Move test_double_* -> test_*
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 |