Returns the product of two numbers.
Returns the product of two Complex
objects, x * y.
public static Complex Multiplication Operator(Complex,Complex);
Returns the product of a Complex
object and a double
, x * y.
public static Complex Multiplication Operator(Complex,double);
Returns the product of a double
and a Complex
object, x * y.
public static Complex Multiplication Operator(double,Complex);
Complex Class | Imsl.Math Namespace