Multiplies a complex number and a real number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> Multiply(
Complex<T> z,
T a
)
Public Shared Function Multiply (
z As Complex(Of T),
a As T
) As Complex(Of T)
public:
static Complex<T> Multiply(
Complex<T> z,
T a
)
static member Multiply :
z : Complex<'T> *
a : 'T -> Complex<'T>
Parameters
- z
- Type: Extreme.MathematicsComplexT
The complex number. - a
- Type: T
The real number.
Return Value
Type:
ComplexTA complex number that is the product
of the two operands.
This method is equivalent to the
Multiply(ComplexT, T). It is provided for languages
that do not support operator overloading.
Reference