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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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