Click or drag to resize

VectorStorageTMapToTU Method

Maps the storage into another 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>(
	VectorStorage<TU> target,
	Func<T, TU> f,
	Zeros zeros,
	ExistingData existingData
)
where TU : struct, new(), IEquatable<TU>, IFormattable

Parameters

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