IMSL C# Numerical Library

ComplexMatrix.Add Method 

Add two rectangular Complex arrays, a + b.

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

Parameters

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

Return Value

The Complex matrix sum 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