|  | Matrix33FDivide Method | 
            Divides a matrix by a scalar.
            
 
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
 Syntax
Syntaxpublic static Matrix33F Divide(
	Matrix33F matrix,
	float scalar
)
Public Shared Function Divide ( 
	matrix As Matrix33F,
	scalar As Single
) As Matrix33F
public:
static Matrix33F Divide(
	Matrix33F matrix, 
	float scalar
)
static member Divide : 
        matrix : Matrix33F * 
        scalar : float32 -> Matrix33F 
Parameters
- matrix
- Type: DigitalRune.Mathematics.AlgebraMatrix33F
 The matrix.
- scalar
- Type: SystemSingle
 The scalar.
Return Value
Type: 
Matrix33FThe matrix with each element divided by scalar.
 See Also
See Also