Imaginary<T>.Subtraction Operator
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Subtraction( | Subtracts an imaginary number from a complex number. |
Subtraction( | Subtracts an imaginary number from a real number. |
Subtraction( | Subtracts a real number from an imaginary number. |
Subtraction( | Subtracts a complex number from an imaginary number. |
Subtraction( | Subtracts two complex numbers. |
Subtraction(Complex<T>, Imaginary<T>) Operator
public static Complex<T> operator -(
Complex<T> z2,
Imaginary<T> z
)
Parameters
Return Value
Complex<T>A complex number that equals the real number minus the complex number.
Remarks
If you are using a language that does not support operator overloading, use the staticSubtract(T, Imaginary<T>) method instead.
Subtraction(T, Imaginary<T>) Operator
public static Complex<T> operator -(
T a,
Imaginary<T> z
)
Parameters
Return Value
Complex<T>A complex number that equals the real number minus the complex number.
Remarks
If you are using a language that does not support operator overloading, use the staticSubtract(T, Imaginary<T>) method instead.
Subtraction(Imaginary<T>, T) Operator
public static Complex<T> operator -(
Imaginary<T> z,
T a
)
Parameters
Return Value
Complex<T>A complex number that equals the complex number minus the real number.
Remarks
If you are using a language that does not support operator overloading, use the staticSubtract(Imaginary<T>, T) method instead.
Subtraction(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 equals the imaginary number minus the complex number.
Remarks
If you are using a language that does not support operator overloading, use the staticSubtract(Imaginary<T>, T) method instead.
Subtraction(Imaginary<T>, Imaginary<T>) Operator
public static Imaginary<T> operator -(
Imaginary<T> z1,
Imaginary<T> z2
)
Parameters
Return Value
Imaginary<T>A complex number that is the difference between the two operands.
Remarks
If you are using a language that does not support operator overloading, use the staticSubtract(Imaginary<T>, Imaginary<T>) method instead.