Complex<T>.SinCos Method

Gets the sine and cosine of a complex number.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static (Complex<T> , Complex<T> ) SinCos(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

Return Value

ValueTuple<Complex<T>, Complex<T>>
A tuple containing the sine and the cosine of the complex number.

See Also