DistributedMatrix<T>.SubtractAsRightCore Method

Subtracts a matrix from a scalar.

Definition

Namespace: Numerics.NET.Distributed
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
protected override Matrix<T> SubtractAsRightCore(
	T left,
	Matrix<T>? result
)

Parameters

left  T
The constant.
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