This shows you the differences between two versions of the page.
|
c:complex.h:casinh [2013/02/03 19:13] 127.0.0.1 external edit |
c:complex.h:casinh [2024/02/16 01:06] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== casinh ====== | ====== casinh ====== | ||
| <code c> | <code c> | ||
| + | double complex casinh(double complex z); | ||
| </code> | </code> | ||
| ==== description of casinh ==== | ==== description of casinh ==== | ||
| - | casinh is in work by code-reference.com \\ | + | calculate the complex arc hyperbolic sine |
| - | if you are faster... don't hasitate and add it | + | |
| <code c> | <code c> | ||
| - | no example at the moment | + | #include <stdio.h> |
| + | #include <complex.h> | ||
| + | |||
| + | int main( void ) | ||
| + | { | ||
| + | |||
| + | long double complex zlong=4.2 + I*2.34; | ||
| + | double complex zdouble=(double complex)zlong; | ||
| + | |||
| + | double result; | ||
| + | |||
| + | result = casinh(zdouble); | ||
| + | printf("casinh(%f + I*%f) = %f\n", creal(zdouble), cimag(zdouble), result); | ||
| + | return 0; | ||
| + | } | ||
| </code> | </code> | ||
| ===== output of casinh c example ===== | ===== output of casinh c example ===== | ||
| - | no example at the moment | + | casinh(4.200000 + I*2.340000) = 2.269167 |