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