ManagedArrayFunctionsOfSingle.Add Method

Adds a value to each element of an array.

Definition

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

Parameters

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

Implements

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

See Also