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

Adds a matrix and a scalar.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> AddInto<T>(
	T value,
	Matrix<T> matrix,
	Matrix<T> result
)

Parameters

value  T
The constant.
matrix  Matrix<T>
A matrix.
result  Matrix<T>
The matrix that is to hold the result. May be null.

Type Parameters

T

Return Value

Matrix<T>
A matrix whose elements are the sum of the corresponding elements of matrix and value.

Exceptions

ArgumentNullExceptionmatrix is null

See Also