Complex<T>.Acos Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

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

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.

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