Click or drag to resize

FloatMatrixAddition(FloatMatrix, Single) Operator

Adds a matrix and a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatMatrix operator +(
	FloatMatrix A,
	float s
)

Parameters

A  FloatMatrix
A matrix.
s  Single
A scalar.

Return Value

FloatMatrix
A matrix B where B[i,j] = A[i,j] + s.
See Also