Click or drag to resize

ComplexMathMultiplyRealNumber Method

This function returns the product of the complex number a and the real number x, z=a*x.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static Complex MultiplyRealNumber(
	Complex a,
	double x
)

Parameters

a  Complex
First multiplicand.
x  Double
Real multiplier.

Return Value

Complex
The product of the complex number a and the real number x, i.e. a*x.
See Also