Multiplies a DoubleComplex number and a real number.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function Multiply ( _ a As Double, _ z As DoubleComplex _ ) As DoubleComplex |
| C# |
|---|
public static DoubleComplex Multiply ( double a, DoubleComplex z ) |
| C++ |
|---|
public: static DoubleComplex Multiply ( double a, DoubleComplex z ) |
Parameters
- a (System.Double)
- The DoubleComplex number.
- z (Extreme.Mathematics.DoubleComplex)
- The real number.
Return Value
A DoubleComplex number that is the product of the two operands.
Remarks
This method is equivalent to the
Multiply(Double, DoubleComplex). It is provided for languages
that do not support operator overloading.