#define cosh( z )
(4) (since C99)1-3) Computes the complex hyperbolic cosine of z
.
Type-generic macro: If
z
has type
long double complex,
ccoshl
is called. if
z
has type
double complex,
ccosh
is called, if
z
has type
float complex,
ccoshf
is called. If
z
is real or integer, then the macro invokes the corresponding real function (
coshf,
cosh,
coshl). If
z
is imaginary, then the macro invokes the corresponding real version of the function
cos, implementing the formula
cosh(iy) = cos(y), and the return type is real.
[edit] Parameters [edit] Return valueIf no errors occur, complex hyperbolic cosine of z
is returned
Errors are reported consistent with math_errhandling
If the implementation supports IEEE floating-point arithmetic,
z
is +0+0i
, the result is 1+0i
z
is +0+âi
, the result is NaN±0i
(the sign of the imaginary part is unspecified) and FE_INVALID is raisedz
is +0+NaNi
, the result is NaN±0i
(the sign of the imaginary part is unspecified)z
is x+âi
(for any finite non-zero x), the result is NaN+NaNi
and FE_INVALID is raisedz
is x+NaNi
(for any finite non-zero x), the result is NaN+NaNi
and FE_INVALID may be raisedz
is +â+0i
, the result is +â+0i
z
is +â+yi
(for any finite non-zero y), the result is +âcis(y)
z
is +â+âi
, the result is 屉+NaNi
(the sign of the real part is unspecified) and FE_INVALID is raisedz
is +â+NaN
, the result is +â+NaN
z
is NaN+0i
, the result is NaN±0i
(the sign of the imaginary part is unspecified)z
is NaN+yi
(for any finite non-zero y), the result is NaN+NaNi
and FE_INVALID may be raisedz
is NaN+NaNi
, the result is NaN+NaNi
where cis(y) is cos(y) + i sin(y)
[edit] NotesMathematical definition of hyperbolic cosine is
cosh z =Hyperbolic cosine is an entire function in the complex plane and has no branch cuts. It is periodic with respect to the imaginary component, with period 2πi
[edit] Example#include <stdio.h> #include <math.h> #include <complex.h> int main(void) { double complex z = ccosh(1); // behaves like real cosh along the real line printf("cosh(1+0i) = %f%+fi (cosh(1)=%f)\n", creal(z), cimag(z), cosh(1)); double complex z2 = ccosh(I); // behaves like real cosine along the imaginary line printf("cosh(0+1i) = %f%+fi ( cos(1)=%f)\n", creal(z2), cimag(z2), cos(1)); }
Output:
cosh(1+0i) = 1.543081+0.000000i (cosh(1)=1.543081) cosh(0+1i) = 0.540302+0.000000i ( cos(1)=0.540302)[edit] References
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4