Click or drag to resize

MatrixStorageTMapToTU Method

Maps each value into another matrix storage.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void MapTo<TU>(
	MatrixStorage<TU> target,
	Func<T, TU> f,
	Zeros zeros,
	ExistingData existingData
)
where TU : struct, new(), IEquatable<TU>, IFormattable

Parameters

target  MatrixStorageTU
The target storage.
f  FuncT, TU
The 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