Complex<T>.Multiply Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Multiply( | Multiplies a complex number and a real number. |
Multiply( | Multiplies a complex number and a real number. |
Multiply( | Multiplies two complex numbers. |
Multiply(T, Complex<T>) Operator
Multiplies a complex number and a real number.
public static Complex<T> operator *(
T a,
Complex<T> z
)
Parameters
Return Value
Complex<T>A complex number that is the product of the two operands.
Remarks
If you are using a language that does not support operator overloading, use the staticMultiply(T, Complex<T>) method instead.
Multiply(Complex<T>, T) Operator
Multiplies a complex number and a real number.
public static Complex<T> operator *(
Complex<T> z,
T a
)
Parameters
Return Value
Complex<T>A complex number that is the product of the two operands.
Remarks
If you are using a language that does not support operator overloading, use the staticMultiply(Complex<T>, T) method instead.
Multiply(Complex<T>, Complex<T>) Operator
Multiplies two complex numbers.
public static Complex<T> operator *(
Complex<T> z1,
Complex<T> z2
)
Parameters
Return Value
Complex<T>A complex number that is the product of the two operands.
Implements
IMultiplyOperators<TSelf, TOther, TResult>.Multiply(TSelf, TOther)Remarks
If you are using a language that does not support operator overloading, use the staticMultiply(Complex<T>, Complex<T>) method instead.