ComplexMultiply(Complex, Complex) Method |
Calculates the product of the two numbers
Namespace: RelaxIS_SDK.libMathAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public static Complex Multiply(
Complex C1,
Complex C2
)
Public Shared Function Multiply (
C1 As Complex,
C2 As Complex
) As Complex
Dim C1 As Complex
Dim C2 As Complex
Dim returnValue As Complex
returnValue = Complex.Multiply(C1, C2)
Parameters
- C1 Complex
- The first argument
- C2 Complex
- The second argument
Return Value
ComplexThe sum of the two numbers
See Also