Multiplies a matrix by a scalar.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> MultiplyCore(
T value,
Matrix<T> result
)
Protected Overridable Function MultiplyCore (
value As T,
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ MultiplyCore(
T value,
Matrix<T>^ result
)
abstract MultiplyCore :
value : 'T *
result : Matrix<'T> -> Matrix<'T>
override MultiplyCore :
value : 'T *
result : Matrix<'T> -> Matrix<'T>
Parameters
- value
- Type: T
The constant. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTA matrix whose elements are
the sum of the corresponding elements of
this matrix and
value.
Reference