Subtracts a scalar value from a complex number and puts the result into another complex number.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static void Subtract(
	Complex a,
	double s,
	ref Complex result
)

Parameters

a
Type: AForge.Math..::.Complex
A Complex instance to subtract from.
s
Type: System..::.Double
A scalar value to be subtracted.
result
Type: AForge.Math..::.Complex %
A Complex instance to hold the result.

See Also