Multiplies a matrix in-place by the specified factor.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Matrix<T> MultiplyInPlace(
T factor
)
Public Overridable Function MultiplyInPlace (
factor As T
) As Matrix(Of T)
public:
virtual Matrix<T>^ MultiplyInPlace(
T factor
)
abstract MultiplyInPlace :
factor : 'T -> Matrix<'T>
override MultiplyInPlace :
factor : 'T -> Matrix<'T>
Parameters
- factor
- Type: T
The factor to multiply the matrix by.
Return Value
Type:
MatrixTA reference to this matrix.
Reference