VectorStorageTMapIndexedToTU Method |
Maps the storage into another storage using the element index.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic void MapIndexedTo<TU>(
VectorStorage<TU> target,
Func<int, T, TU> f,
Zeros zeros,
ExistingData existingData
)
where TU : struct, new(), IEquatable<TU>, IFormattable
Parameters
- target VectorStorageTU
- The target storage.
- f FuncInt32, T, TU
- The indexed mapping function.
- zeros Zeros
- Specifies how zero values are treated.
- existingData ExistingData
- Specifies how existing target data is handled.
Type Parameters
- TU
- The target element type.
See Also