Click or drag to resize

FloatMatrixMultiply(Single, FloatMatrix) Method

Multiple a scalar and a matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatMatrix Multiply(
	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