DenseMatrixMultiplyAssign Method |
Multiply a matrix by a scalar in place, A = s*A
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public DenseMatrix MultiplyAssign(
double s
)
Public Function MultiplyAssign (
s As Double
) As DenseMatrix
public:
DenseMatrix^ MultiplyAssign(
double s
)
member MultiplyAssign :
s : float -> DenseMatrix
Parameters
- s
- Type: SystemDouble
The scalar.
Return Value
Type:
DenseMatrixA reference to this matrix, for convenience in performing multiple operations in a single line of code.
See Also