ManagedArrayFunctions.Add Method

Adds a value to each element of an array.

Definition

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

Parameters

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

Implements

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

See Also