Returns the product of a Complex object and a pure imaginary double, x * iy.

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

Syntax

C#
public static Complex MultiplyImag(
	Complex x,
	double y
)
Visual Basic (Declaration)
Public Shared Function MultiplyImag ( _
	x As Complex, _
	y As Double _
) As Complex
Visual C++
public:
static Complex MultiplyImag(
	Complex x, 
	double y
)

Parameters

x
Type: Imsl.Math..::.Complex
A Complex object.
y
Type: System..::.Double
A double value representing a pure imaginary.

Return Value

A newly constructed Complex initialized to x * iy.

See Also