Imaginary<T>.SinCos Method

Gets the sine and cosine of an imaginary number.

Definition

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

Parameters

z  Imaginary<T>
An imaginary number.

Return Value

ValueTuple<Imaginary<T>, T>
A tuple containing the sine and the cosine of the imaginary number.

Remarks

The sine of an imaginary number is itself imaginary, while the cosine is real.

See Also