Click or drag to resize

MatrixStorageTCopySubRowTo Method

Copies part of a row into vector storage.

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

Parameters

target  VectorStorageT
The target vector storage.
rowIndex  Int32
The source row index.
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