Click or drag to resize
ComplexMatrixAdd Method
Add two rectangular Complex arrays, a + b.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static Complex[,] Add(
	Complex[,] a,
	Complex[,] b
)

Parameters

a
Type: Imsl.MathComplex
A Complex rectangular array.
b
Type: Imsl.MathComplex
A Complex rectangular array.

Return Value

Type: Complex
The Complex matrix sum of the two arguments.
Exceptions
ExceptionCondition
ArgumentException is thrown when the matrices are not the same size.
See Also