VectorMathMapIndexed(Double, FuncInt32, Double, Double, Double) Method |
Elementwise application of a function to each element of a vector.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void MapIndexed(
double[] src1,
Func<int, double, double> function,
double[] result
)
Parameters
- src1 Double
- The source vector.
- function FuncInt32, Double, Double
- The function to apply to every element. 1st argument is the element, 2nd argument is the element's index.
- result Double
- The vector to store the results. This may be the same instance as the source vector.
See Also