MatrixStorageTMap2To Method |
Maps pairs of values from two matrices into a target matrix.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic void Map2To(
MatrixStorage<T> target,
MatrixStorage<T> other,
Func<T, T, T> f,
Zeros zeros,
ExistingData existingData
)
Parameters
- target MatrixStorageT
- The target storage.
- other MatrixStorageT
- The other matrix storage.
- f FuncT, T, T
- The mapping function.
- zeros Zeros
- How zeros are handled during the mapping.
- existingData ExistingData
- How existing target data is handled.
See Also