VectorTMapIndexed(FuncInt32, T, T, VectorT, Zeros) Method |
Applies a function to each value of this vector and replaces the value in the result vector.
The index of each value (zero-based) is passed as first argument to the function.
If forceMapZero is not set to true, zero values may or may not be skipped depending
on the actual data storage implementation (relevant mostly for sparse vectors).
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic void MapIndexed(
Func<int, T, T> f,
Vector<T> result,
Zeros zeros = Zeros.AllowSkip
)
Parameters
- f FuncInt32, T, T
- The indexed mapping function.
- result VectorT
- The destination vector.
- zeros Zeros (Optional)
- Specifies whether zero values may be skipped.
See Also