Divides the components of a matrix by a scalar.

Namespace:  Bespoke.Common.LinearAlgebra
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public static Matrix operator /(
	double divisor,
	Matrix M
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	divisor As Double, _
	M As Matrix _
) As Matrix
Visual C++
public:
static Matrix^ operator /(
	double divisor, 
	Matrix^ M
)

Parameters

divisor
Type: System..::.Double
The divisor.
M
Type: Bespoke.Common.LinearAlgebra..::.Matrix
Source matrix

Return Value

[Missing <returns> documentation for "M:Bespoke.Common.LinearAlgebra.Matrix.op_Division(System.Double,Bespoke.Common.LinearAlgebra.Matrix)"]

See Also