Click or drag to resize

VectorMathAdd(IReadOnlyListSingle, IReadOnlyListSingle, IVectorSingle) Method

Adds (elementwise) two vectors a and b and stores the result in c. All vectors must have the same length.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void Add(
	IReadOnlyList<float> a,
	IReadOnlyList<float> b,
	IVector<float> c
)

Parameters

a  IReadOnlyListSingle
First summand.
b  IReadOnlyListSingle
Second summand.
c  IVectorSingle
The resulting vector.
See Also