Returns the negative of a Complex object, -z.

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

Syntax

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

Parameters

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

Return Value

A newly constructed Complex initialized to the negative of the Complex argument, z.

See Also