Subtract two Complex rectangular arrays, a - b.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static Complex[,] Subtract(
	Complex[,] a,
	Complex[,] b
)
Visual Basic (Declaration)
Public Shared Function Subtract ( _
	a As Complex(,), _
	b As Complex(,) _
) As Complex(,)
Visual C++
public:
static array<Complex,2>^ Subtract(
	array<Complex,2>^ a, 
	array<Complex,2>^ b
)

Parameters

a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular array.
b
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular array.

Return Value

The Complex matrix difference of the two arguments.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown when the matrices are not the same size.

See Also