Click or drag to resize

VectorMath.MapIndexed(IReadOnlyList<Double>, IReadOnlyList<Double>, IReadOnlyList<Double>, Func<Int32, Double, Double, Double, Double>, IVector<Double>) Method

Elementwise application of a function to corresponding elements of three vectors. The result is stored in another vector or in the same vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static void MapIndexed(
	IReadOnlyList<double> src1,
	IReadOnlyList<double> src2,
	IReadOnlyList<double> src3,
	Func<int, double, double, double, double> function,
	IVector<double> result
)

Parameters

src1  IReadOnlyList<Double>
First source vector.
src2  IReadOnlyList<Double>
Second source vector.
src3  IReadOnlyList<Double>
Third source vector.
function  Func<Int32, Double, Double, Double, Double>
The function to apply to every element. 1st argument is the element from src1, 2nd argument is the element from src2, 3rd argument is the element from src3, 4th argument is the element's index.
result  IVector<Double>
The vector to store the results. This may or may not be the same instance as the source vector.
See Also