Click or drag to resize

VectorMathAdd(Single, Single, Single) 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(
	float[] a,
	float[] b,
	float[] c
)

Parameters

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