Matrix.Multiply Operator (Matrix, Double) |
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: 25.1.421.0 (25.1.421.0)
Syntaxpublic static Matrix operator *(
Matrix matrix,
double factor
)
Public Shared Operator * (
matrix As Matrix,
factor As Double
) As Matrix
public:
static Matrix^ operator *(
Matrix^ matrix,
double factor
)
static let inline (*)
matrix : Matrix *
factor : float : Matrix
Parameters
- matrix
- Type: AGI.Foundation.Coordinates.Matrix
The matrix to be multiplied by the given factor. - factor
- Type: System.Double
The 'scalar' to multiply by the given matrix.
Return Value
Type:
MatrixThe new matrix.
See Also