| Matrix22DDivision Operator |
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 Matrix22D operator /(
Matrix22D matrix,
double scalar
)
Public Shared Operator / (
matrix As Matrix22D,
scalar As Double
) As Matrix22D
public:
static Matrix22D operator /(
Matrix22D matrix,
double scalar
)
static let inline (/)
matrix : Matrix22D *
scalar : float : Matrix22D
Parameters
- matrix
- Type: DigitalRune.Mathematics.AlgebraMatrix22D
The matrix. - scalar
- Type: SystemDouble
The scalar.
Return Value
Type:
Matrix22DThe matrix with each element divided by scalar.
See Also