Complex<T>.Acos Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Acos(T) Gets the inverse cosine of a real number.
Acos(Complex<T>) Gets the inverse cosine of a complex number.

Complex<T>.Acos(T)

Gets the inverse cosine of a real number.
C#
public static Complex<T> Acos(
	T a
)

Parameters

a  T
A complex number.

Return Value

Complex<T>
The inverse cosine of the complex number.

Complex<T>.Acos(Complex<T>)

Gets the inverse cosine of a complex number.
C#
public static Complex<T> Acos(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

Return Value

Complex<T>
The inverse cosine of the complex number.

See Also