MatrixStorageTMapIndexedToTU Method |
Maps each indexed value into another matrix storage.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic void MapIndexedTo<TU>(
MatrixStorage<TU> target,
Func<int, int, T, TU> f,
Zeros zeros,
ExistingData existingData
)
where TU : struct, new(), IEquatable<TU>, IFormattable
Parameters
- target MatrixStorageTU
- The target storage.
- f FuncInt32, Int32, T, TU
- The indexed mapping function.
- zeros Zeros
- How zeros are handled during the mapping.
- existingData ExistingData
- How existing target data is handled.
Type Parameters
- TU
- The target element type.
See Also