Divide a scalar by a matrix.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatMatrix operator /(
	float s,
	FloatMatrix A
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	s As Single, _
	A As FloatMatrix _
) As FloatMatrix
Visual C++
public:
static FloatMatrix^ operator /(
	float s, 
	FloatMatrix^ A
)

Parameters

s
Type: System..::.Single
A scalar.
A
Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix.

Return Value

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

See Also