Click or drag to resize

FloatComplexMatrixAdd(FloatComplexMatrix, FloatComplexMatrix) Method

Adds two matrices.

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

Parameters

A  FloatComplexMatrix
A matrix.
B  FloatComplexMatrix
A matrix.

Return Value

FloatComplexMatrix
A 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