std::asin(std::complex)
From cppreference.com
Defined in header
<complex>
|
||
template< class T >
complex<T> asin( const complex<T>& z ); |
(since C++11) | |
Computes complex arc sine of a complex value z
. Branch cut exists outside the interval [−1 ; +1] along the real axis.
[edit] Parameters
z | - | complex value |
[edit] Return value
Complex arc sine of z
in the range [0 ; π) along the real axis.
[edit] See also
(C++11)
|
computes arc cosine of a complex number (arccos(z)) (function template) |
(C++11)
|
computes arc tangent of a complex number (arctan(z)) (function template) |
computes sine of a complex number (sin(z)) (function template) |
|
computes arc sine (arcsin(x)) (function) |
|
applies the function std::asin to each element of valarray (function template) |
|
C documentation for casin
|