Click or drag to resize

FloatMatrixDivide(Single, FloatMatrix) Method

Divide a scalar by a matrix.

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

Parameters

s  Single
A scalar.
A  FloatMatrix
A matrix.

Return Value

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