Returns the negative of a Complex object, -x.

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

Syntax

C#
public static Complex operator -(
	Complex x
)
Visual Basic (Declaration)
Public Shared Operator - ( _
	x As Complex _
) As Complex
Visual C++
public:
static Complex operator -(
	Complex x
)

Parameters

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

Return Value

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

See Also