ManagedArrayFunctions<T>.SubtractFrom Method

Subtracts each element of an array from a value.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual void SubtractFrom(
	int length,
	T value,
	ArraySlice<T> operand,
	ArraySlice<T> result
)

Parameters

length  Int32
The number of elements in the array.
value  T
The number to compare to.
operand  ArraySlice<T>
The array that holds the operands.
result  ArraySlice<T>
The array that holds the results.

Implements

IArrayFunctions<T, TShape, TArray>.SubtractFrom(TShape, T, TArray, TArray)

See Also