Click or drag to resize

ComplexMatrix.Add Method (ComplexMatrix)

Creates a ComplexMatrix which is the sum of this matrix and the given matrix.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public ComplexMatrix Add(
	ComplexMatrix addend
)

Parameters

addend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix to add to this matrix.

Return Value

Type: ComplexMatrix
A ComplexMatrix which is the sum of this matrix and the given matrix.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when addend is null.
InvalidOperationException Thrown when the dimensions of addend do not match the dimensions of this ComplexMatrix.
See Also