IArrayFunctions<T, TShape, TArray>.Add Method

Adds each element of an array to the corresponding element in another array.

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
void Add(
	TShape shape,
	TArray first,
	TArray second,
	TArray result
)

Parameters

shape  TShape
The number of elements in the array.
first  TArray
The array that holds the first operands.
second  TArray
The array that holds the second operands.
result  TArray
The array that holds the results.

See Also