IMSL C# Numerical Library

ComplexMatrix.Subtract Method 

Subtract two Complex rectangular arrays, a - b.

public static Complex[,] Subtract(
   Complex[,] a,
   Complex[,] b
);

Parameters

a
A Complex rectangular array.
b
A Complex rectangular array.

Return Value

The Complex matrix difference of the two arguments.

Exceptions

Exception Type Condition
ArgumentException is thrown when the matrices are not the same size.

See Also

ComplexMatrix Class | Imsl.Math Namespace