DenseMatrix<T>.SubtractAsRightCore Method

Subtracts a matrix from a scalar.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected override Matrix<T> SubtractAsRightCore(
	T value,
	Matrix<T> result
)

Parameters

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

Return Value

Matrix<T>
A matrix whose elements are the difference between the corresponding elements of this matrix and left.

See Also