diff options
author | Sandeep Gupta | 2017-06-18 23:55:40 +0530 |
---|---|---|
committer | Sandeep Gupta | 2017-06-18 23:55:40 +0530 |
commit | 277d1edfa17bf3719d90ddbac8e31f6181e952c3 (patch) | |
tree | 0661f1f52af0a0fd654edd4984c30e57037303c6 /tests/unit_tests/double/test_atanh.sci | |
download | Scilab2C_fossee_old-277d1edfa17bf3719d90ddbac8e31f6181e952c3.tar.gz Scilab2C_fossee_old-277d1edfa17bf3719d90ddbac8e31f6181e952c3.tar.bz2 Scilab2C_fossee_old-277d1edfa17bf3719d90ddbac8e31f6181e952c3.zip |
First commit
Diffstat (limited to 'tests/unit_tests/double/test_atanh.sci')
-rw-r--r-- | tests/unit_tests/double/test_atanh.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit_tests/double/test_atanh.sci b/tests/unit_tests/double/test_atanh.sci new file mode 100644 index 0000000..eb163a1 --- /dev/null +++ b/tests/unit_tests/double/test_atanh.sci @@ -0,0 +1,11 @@ +function test_atanh() + d0 = %pi + d2 = [2 2 3 4 ; 4 5 6 8 ; 9 10 11 12 ; 13 14 15 16] + z0 = d0 + %i * d0 + z2 = d2 + %i * d2 + + disp(atanh(d0)); + disp(atanh(d2)); + disp(atanh(z0)); + disp(atanh(z2)); +endfunction |