Returns the difference of a real number and a complex number.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleComplex Subtract(
	double d,
	DoubleComplex c
)
Visual Basic (Declaration)
Public Shared Function Subtract ( _
	d As Double, _
	c As DoubleComplex _
) As DoubleComplex
Visual C++
public:
static DoubleComplex Subtract(
	double d, 
	DoubleComplex c
)

Parameters

d
Type: System..::.Double
A real number.
c
Type: CenterSpace.NMath.Core..::.DoubleComplex
A complex number.

Return Value

The result of subtracting c from f.

See Also