Click or drag to resize

FloatMatrixDivide(Single, FloatMatrix, FloatMatrix) Method

Divide a scalar by a matrix.

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

Parameters

s  Single
A scalar.
A  FloatMatrix
A matrix.
B  FloatMatrix
A matrix whose contents are overwritten by the quotient B[i,j] = s / A[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have the same dimensions.
See Also