Click or drag to resize

MatrixStorageTCopySubMatrixTo Method

Copies a submatrix into another storage instance.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void CopySubMatrixTo(
	MatrixStorage<T> target,
	int sourceRowIndex,
	int targetRowIndex,
	int rowCount,
	int sourceColumnIndex,
	int targetColumnIndex,
	int columnCount,
	ExistingData existingData = ExistingData.Clear
)

Parameters

target  MatrixStorageT
The target storage.
sourceRowIndex  Int32
The starting source row index.
targetRowIndex  Int32
The starting target row index.
rowCount  Int32
The number of rows to copy.
sourceColumnIndex  Int32
The starting source column index.
targetColumnIndex  Int32
The starting target column index.
columnCount  Int32
The number of columns to copy.
existingData  ExistingData  (Optional)
How existing target data is handled.
See Also