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_log.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_log.sci')
-rw-r--r-- | tests/unit_tests/double/test_log.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit_tests/double/test_log.sci b/tests/unit_tests/double/test_log.sci new file mode 100644 index 00000000..d3967899 --- /dev/null +++ b/tests/unit_tests/double/test_log.sci @@ -0,0 +1,11 @@ +function test_log() + 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 + + disp(log(d0)); + disp(log(d2)); + disp(log(z0)); + disp(log(z2)); +endfunction |