Array Functions<T>.Subtract From Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Subtract |
Subtracts each element of a span from a value.
Obsolete. |
Subtract |
Subtracts each element of an array from a value.
Obsolete. |
SubtractFrom<TStorage>(Int32, T, TStorage, TStorage)
Subtracts each element of an array from a value.
[ObsoleteAttribute("Use the Subtract method instead.")]
public void SubtractFrom<TStorage>(
int length,
T value,
TStorage operand,
TStorage result
)
where TStorage : Object, IStorageSlice<T>
Parameters
- length Int32
- The number of elements in the array.
- value T
- The number to compare to.
- operand TStorage
- The array that holds the operands.
- result TStorage
- The array that holds the results.
Type Parameters
- TStorage
SubtractFrom(Int32, T, ReadOnlySpan<T>, Int32, Span<T>, Int32)
Subtracts each element of a span from a value.
[ObsoleteAttribute("Use the Subtract method instead.")]
public void SubtractFrom(
int length,
T value,
ReadOnlySpan<T> operand,
int stride,
Span<T> result,
int resultStride
)