Click or drag to resize

FloatMatrixDivision(FloatMatrix, Single) Operator

Divide a matrix by 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