C++ Complex Library - Asin



Description

It is an arc sine of complex and returns the arc sine of the complex number x.

Declaration

Following is the declaration for std::asin.

template<class T> complex<T> asin (const complex<T>& x);

C++11

	
template<class T> complex<T> asin (const complex<T>& x);

Parameters

x − It is a complex value.

Return Value

It returns the arc sine of the complex number x.

Exceptions

none

complex.htm
Advertisements