Click or drag to resize

DoubleComplexMatrixAdd(DoubleComplex, DoubleComplexMatrix, DoubleComplexMatrix) Method

Adds a scalar and a matrix.

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

Parameters

s  DoubleComplex
A scalar.
A  DoubleComplexMatrix
A matrix.
B  DoubleComplexMatrix
A matrix whose contents are overwritten with the sum: B[i,j] = s + A[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have the same dimensions.
See Also