Click or drag to resize

MatrixStorageTCopySubColumnTo Method

Copies part of a column 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 CopySubColumnTo(
	VectorStorage<T> target,
	int columnIndex,
	int sourceRowIndex,
	int targetRowIndex,
	int rowCount,
	ExistingData existingData = ExistingData.Clear
)

Parameters

target  VectorStorageT
The target vector storage.
columnIndex  Int32
The source column index.
sourceRowIndex  Int32
The starting source row index.
targetRowIndex  Int32
The starting target row index.
rowCount  Int32
The number of rows to copy.
existingData  ExistingData  (Optional)
How existing target data is handled.
See Also