  | FloatComplexMultiply(FloatComplex, Single) Method | 
            Returns the product of a complex number and a real.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplex Multiply(
	FloatComplex c,
	float f
)
Public Shared Function Multiply ( 
	c As FloatComplex,
	f As Single
) As FloatComplex
public:
static FloatComplex Multiply(
	FloatComplex c, 
	float f
)
static member Multiply : 
        c : FloatComplex * 
        f : float32 -> FloatComplex Parameters
- c  FloatComplex
 - A complex number.
 - f  Single
 - A real number.
 
Return Value
FloatComplexThe product of 
c and 
f.
See Also