DenseMatrixMultiply Method (Double) |
Creates a new
Matrix which has the value of the current 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 override Matrix Multiply(
double factor
)
Public Overrides Function Multiply (
factor As Double
) As Matrix
public:
virtual Matrix^ Multiply(
double factor
) override
abstract Multiply :
factor : float -> Matrix
override Multiply :
factor : float -> Matrix
Parameters
- factor
- Type: SystemDouble
The 'scalar' to multiply by the current Matrix.
Return Value
Type:
MatrixThe new matrix.
See Also