| MatrixFDivide 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 public static MatrixF Divide(
MatrixF matrix,
float scalar
)
Public Shared Function Divide (
matrix As MatrixF,
scalar As Single
) As MatrixF
public:
static MatrixF^ Divide(
MatrixF^ matrix,
float scalar
)
static member Divide :
matrix : MatrixF *
scalar : float32 -> MatrixF
Parameters
- matrix
- Type: DigitalRune.Mathematics.AlgebraMatrixF
The matrix. - scalar
- Type: SystemSingle
The scalar.
Return Value
Type:
MatrixFThe matrix with each element divided by scalar.
Exceptions See Also