Adds two matrices.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> AddScaledAsLeftCore(
T factor,
Matrix<T> right,
Matrix<T> result
)
Protected Overridable Function AddScaledAsLeftCore (
factor As T,
right As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ AddScaledAsLeftCore(
T factor,
Matrix<T>^ right,
Matrix<T>^ result
)
abstract AddScaledAsLeftCore :
factor : 'T *
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
override AddScaledAsLeftCore :
factor : 'T *
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- factor
- Type: T
The scale factor for right. - right
- Type: Extreme.MathematicsMatrixT
The right operand. - 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
factor times
right.
Reference