Click or drag to resize

VectorStorageTCopyToSubRow Method

Copies a range of elements into a row segment of a 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 CopyToSubRow(
	MatrixStorage<T> target,
	int rowIndex,
	int sourceColumnIndex,
	int targetColumnIndex,
	int columnCount,
	ExistingData existingData = ExistingData.Clear
)

Parameters

target  MatrixStorageT
The target matrix storage.
rowIndex  Int32
The target row index.
sourceColumnIndex  Int32
The source start index.
targetColumnIndex  Int32
The target column start index.
columnCount  Int32
The number of elements to copy.
existingData  ExistingData  (Optional)
Specifies how existing target data is handled.
See Also