Add two rectangular Complex arrays, a + b.

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

Syntax

C#
public static Complex[,] Add(
	Complex[,] a,
	Complex[,] b
)
Visual Basic (Declaration)
Public Shared Function Add ( _
	a As Complex(,), _
	b As Complex(,) _
) As Complex(,)
Visual C++
public:
static array<Complex,2>^ Add(
	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 sum of the two arguments.

Exceptions

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

See Also