Click or drag to resize

FloatComplexLowerTriMatrixAdd(FloatComplexLowerTriMatrix, FloatComplexLowerTriMatrix) Method

Adds two lower triangular matrices.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexLowerTriMatrix Add(
	FloatComplexLowerTriMatrix A,
	FloatComplexLowerTriMatrix B
)

Parameters

A  FloatComplexLowerTriMatrix
A lower triangular matrix.
B  FloatComplexLowerTriMatrix
A lower triangular matrix.

Return Value

FloatComplexLowerTriMatrix
A lower triangular matrix C where C[i,j] = A[i,j] + B[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two matrices do not have the same dimensions.
See Also