Click or drag to resize

DoubleMatrixAdd(DoubleMatrix, DoubleMatrix, DoubleMatrix) Method

Adds two matrices.

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

Parameters

A  DoubleMatrix
A matrix.
B  DoubleMatrix
A matrix.
C  DoubleMatrix
A matrix whose contents are overwritten with the sum of A and B.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the matrices do not all have the same dimensions.
See Also