Returns the product of a pure imaginary double and a Complex object, ix * y.

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

Syntax

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

Parameters

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

Return Value

A newly constructed Complex initialized to ix * y.

See Also