Click or drag to resize
Complex.Multiply Operator (Double, Complex)
Returns the product of a double and a Complex object, x * y.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static Complex operator *(
	double x,
	Complex y
)

Parameters

x
Type: System.Double
A double value.
y
Type: Imsl.Math.Complex
A Complex object.

Return Value

Type: Complex
A newly constructed Complex initialized to x \times y.
See Also