| Common mathematical functions | |||||||||||||||||||||||||||||||
| Mathematical special functions(C++17) | |||||||||||||||||||||||||||||||
| Mathematical constants(C++20) | |||||||||||||||||||||||||||||||
| Basic linear algebra algorithms(C++26) | |||||||||||||||||||||||||||||||
| Data-parallel types (SIMD)(C++26) | |||||||||||||||||||||||||||||||
| Floating-point environment(C++11) | |||||||||||||||||||||||||||||||
| Complex numbers | |||||||||||||||||||||||||||||||
Numeric array (valarray) | |||||||||||||||||||||||||||||||
| Pseudo-random number generation | |||||||||||||||||||||||||||||||
| Bit manipulation(C++20) | |||||||||||||||||||||||||||||||
| Saturation arithmetic(C++26) | |||||||||||||||||||||||||||||||
| Factor operations | |||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||
| Interpolations | |||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||
| Generic numeric operations | |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
| C-style checked integer arithmetic | |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
Defined in header <complex> | ||
template<class T> complex<T> sinh(const complex<T>& z); | (since C++11) | |
Computes complex hyperbolic sine of a complex valuez.
Contents |
| z | - | complex value |
If no errors occur, complex hyperbolic sine ofz is returned.
Errors are reported consistent withmath_errhandling.
If the implementation supports IEEE floating-point arithmetic,
(+0,+0), the result is(+0,+0)(+0,+∞), the result is(±0,NaN) (the sign of the real part is unspecified) andFE_INVALID is raised(+0,NaN), the result is(±0,NaN)(x,+∞) (for any positive finite x), the result is(NaN,NaN) andFE_INVALID is raised(x,NaN) (for any positive finite x), the result is(NaN,NaN) andFE_INVALID may be raised(+∞,+0), the result is(+∞,+0)(+∞,y) (for any positive finite y), the result is+∞cis(y)(+∞,+∞), the result is(±∞,NaN) (the sign of the real part is unspecified) andFE_INVALID is raised(+∞,NaN), the result is(±∞,NaN) (the sign of the real part is unspecified)(NaN,+0), the result is(NaN,+0)(NaN,y) (for any finite nonzero y), the result is(NaN,NaN) andFE_INVALID may be raised(NaN,NaN), the result is(NaN,NaN)wherecis(y) iscos(y) + i sin(y).
| ez -e-z |
| 2 |
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 period2πi.
#include <cmath>#include <complex>#include <iostream> int main(){std::cout<<std::fixed;std::complex<double> z(1.0,0.0);// behaves like real sinh along the real linestd::cout<<"sinh"<< z<<" = "<<std::sinh(z)<<" (sinh(1) = "<<std::sinh(1)<<")\n"; std::complex<double> z2(0.0,1.0);// behaves like sine along the imaginary linestd::cout<<"sinh"<< z2<<" = "<<std::sinh(z2)<<" ( sin(1) = "<<std::sin(1)<<")\n";}
Output:
sinh(1.000000,0.000000) = (1.175201,0.000000) (sinh(1) = 1.175201)sinh(0.000000,1.000000) = (0.000000,0.841471) ( sin(1) = 0.841471)
| computes hyperbolic cosine of a complex number (\({\small\cosh{z}}\)cosh(z)) (function template)[edit] | |
| computes hyperbolic tangent of a complex number (\({\small\tanh{z}}\)tanh(z)) (function template)[edit] | |
(C++11) | computes area hyperbolic sine of a complex number (\({\small\operatorname{arsinh}{z}}\)arsinh(z)) (function template)[edit] |
(C++11)(C++11) | computes hyperbolic sine (\({\small\sinh{x}}\)sinh(x)) (function)[edit] |
| applies the functionstd::sinh to each element of valarray (function template)[edit] | |
C documentation forcsinh | |