Click or drag to resize

MatrixStorageTMapSubMatrixIndexedToTU Method

Maps an indexed submatrix 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 MapSubMatrixIndexedTo<TU>(
	MatrixStorage<TU> target,
	Func<int, int, T, TU> f,
	int sourceRowIndex,
	int targetRowIndex,
	int rowCount,
	int sourceColumnIndex,
	int targetColumnIndex,
	int columnCount,
	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.
sourceRowIndex  Int32
The starting source row index.
targetRowIndex  Int32
The starting target row index.
rowCount  Int32
The number of rows to map.
sourceColumnIndex  Int32
The starting source column index.
targetColumnIndex  Int32
The starting target column index.
columnCount  Int32
The number of columns to map.
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