Imaginary<T>.Multiply Operator
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Multiply( | Multiplies an imaginary number and a complex number. |
Multiply( | Multiplies an imaginary number and a real number. |
Multiply( | Multiplies an imaginary number and a real number. |
Multiply( | Multiplies an imaginary number and a complex number. |
Multiply( | Multiplies two complex numbers. |
Multiply(Complex<T>, Imaginary<T>) Operator
public static Complex<T> operator *(
Complex<T> z1,
Imaginary<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, Imaginary<T>) method instead.
Multiply(T, Imaginary<T>) Operator
public static Imaginary<T> operator *(
T a,
Imaginary<T> z
)
Parameters
Return Value
Imaginary<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, Imaginary<T>) method instead.
Multiply(Imaginary<T>, T) Operator
public static Imaginary<T> operator *(
Imaginary<T> z,
T a
)
Parameters
Return Value
Imaginary<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(Imaginary<T>, T) method instead.
Multiply(Imaginary<T>, Complex<T>) Operator
public static Complex<T> operator *(
Imaginary<T> z,
Complex<T> z2
)
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(Imaginary<T>, T) method instead.
Multiply(Imaginary<T>, Imaginary<T>) Operator
public static T operator *(
Imaginary<T> z1,
Imaginary<T> z2
)
Parameters
Return Value
TA 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(Imaginary<T>, Imaginary<T>) method instead.