Returns the sine of a Complex.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static Complex Sin(
	Complex z
)
Visual Basic (Declaration)
Public Shared Function Sin ( _
	z As Complex _
) As Complex
Visual C++
public:
static Complex Sin(
	Complex z
)

Parameters

z
Type: Imsl.Math..::.Complex
A Complex object.

Return Value

A newly constructed Complex initialized to the sine of the argument.

Remarks

The value of Sin is defined in terms of the function Sinh, by \sin(z) = -i \sinh(iz).

See Also