VectorStorageTCopyToSubColumn Method |
Copies a range of elements into a column segment of a matrix storage.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic void CopyToSubColumn(
MatrixStorage<T> target,
int columnIndex,
int sourceRowIndex,
int targetRowIndex,
int rowCount,
ExistingData existingData = ExistingData.Clear
)
Parameters
- target MatrixStorageT
- The target matrix storage.
- columnIndex Int32
- The target column index.
- sourceRowIndex Int32
- The source start index.
- targetRowIndex Int32
- The target row start index.
- rowCount Int32
- The number of elements to copy.
- existingData ExistingData (Optional)
- Specifies how existing target data is handled.
See Also