Complex.Multiply Operator (Complex, Complex) |
Returns the product of two Complex objects, x * y.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static Complex operator *(
Complex x,
Complex y
)
Public Shared Operator * (
x As Complex,
y As Complex
) As Complex
public:
static Complex operator *(
Complex x,
Complex y
)
static let inline (*)
x : Complex *
y : Complex : Complex
Parameters
- x
- Type: Imsl.Math.Complex
A Complex object.
- y
- Type: Imsl.Math.Complex
A Complex object.
Return Value
Type:
Complex
A newly constructed
Complex initialized to

.
See Also