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

Adds a matrix and a vector broadcast along the specified dimension.

Definition

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

Parameters

factor  T
The scale factor for the matrix.
left  Vector<T>
The left operand.
broadcastDimension  Dimension
A value that specifies whether the elements in left should be broadcast across rows or columns.
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 this matrix and factor times left.

Exceptions

DimensionMismatchException This matrix and left do not have the same length.

See Also