MatrixMultiply Operator (Double, Matrix) |
Creates a new
Matrix which has the value of the given matrix multiplied by the given factor.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Matrix operator *(
double factor,
Matrix matrix
)
Public Shared Operator * (
factor As Double,
matrix As Matrix
) As Matrix
public:
static Matrix^ operator *(
double factor,
Matrix^ matrix
)
static let inline (*)
factor : float *
matrix : Matrix : Matrix
Parameters
- factor
- Type: SystemDouble
The 'scalar' to multiply by the given matrix. - matrix
- Type: AGI.Foundation.CoordinatesMatrix
The matrix to be multiplied by the given factor.
Return Value
Type:
MatrixThe new matrix.
See Also