A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.cppreference.com/w/cpp/algorithm/../../c/header/../numeric/complex/csinh.html below:

csinhf, csinh, csinhl - cppreference.com

(1) (since C99) (2) (since C99) (3) (since C99)

#define sinh( z )

(4) (since C99)

1-3) Computes the complex hyperbolic sine of z.

4)

Type-generic macro: If

z

has type

long double complex

,

csinhl

is called. if

z

has type

double complex

,

csinh

is called, if

z

has type

float complex

,

csinhf

is called. If

z

is real or integer, then the macro invokes the corresponding real function (

sinhf

,

sinh

,

sinhl

). If

z

is imaginary, then the macro invokes the corresponding real version of the function

sin

, implementing the formula

sinh(iy) = i sin(y)

, and the return type is imaginary.

[edit] Parameters [edit] Return value

If no errors occur, complex hyperbolic sine of z is returned

[edit] Error handling and special values

Errors are reported consistent with math_errhandling

If the implementation supports IEEE floating-point arithmetic,

where cis(y) is cos(y) + i sin(y)

[edit] Notes

Mathematical definition of hyperbolic sine is

sinh z =

Hyperbolic sine 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 = csinh(1);  // behaves like real sinh along the real line
    printf("sinh(1+0i) = %f%+fi (sinh(1)=%f)\n", creal(z), cimag(z), sinh(1));
 
    double complex z2 = csinh(I); // behaves like sine along the imaginary line
    printf("sinh(0+1i) = %f%+fi ( sin(1)=%f)\n", creal(z2), cimag(z2), sin(1));
}

Output:

sinh(1+0i) = 1.175201+0.000000i (sinh(1)=1.175201)
sinh(0+1i) = 0.000000+0.841471i ( sin(1)=0.841471)
[edit] References
[edit] See also

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