Returns the tangent of a Complex.

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

Syntax

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

Parameters

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

Return Value

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

Remarks

The value of Tan is defined in terms of the function Tanh, by \tan(z) = -i \tanh(iz).

See Also