Method Divide
Divide(Matrix, Matrix)
Determines the quotient of two matrices.
Declaration
public static Matrix Divide(Matrix left, Matrix right)
Parameters
| Type | Name | Description |
|---|---|---|
| Matrix | left | The first matrix to divide. |
| Matrix | right | The second matrix to divide. |
Returns
| Type | Description |
|---|---|
| Matrix | The quotient of the two matrices. |
Divide(Matrix, Single)
Scales a matrix by the given value.
Declaration
public static Matrix Divide(Matrix left, float right)
Parameters
| Type | Name | Description |
|---|---|---|
| Matrix | left | The matrix to scale. |
| System.Single | right | The amount by which to scale. |
Returns
| Type | Description |
|---|---|
| Matrix | The scaled matrix. |