Matrix<T>.AddScaledAsRightCore(Matrix<T>, T, Matrix<T>) Method

Adds two matrices.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected virtual Matrix<T> AddScaledAsRightCore(
	Matrix<T> left,
	T factor,
	Matrix<T> result
)

Parameters

left  Matrix<T>
The left operand.
factor  T
The scale factor for this matrix.
result  Matrix<T>
The matrix that is to hold the result. May be null.

Return Value

Matrix<T>
A matrix whose elements are the sum of the corresponding elements of left and factor times the corresponding elements of this vector.

Exceptions

DimensionMismatchException This matrix and left do not have the same number of rows and columns.

See Also