Click or drag to resize

DoubleColumnToROVector(Int32, Int32) Method

Provides a setter property to which a readonly vector can be assigned to. Copies all elements of the readonly vector to this column. The getter property creates a wrapper for this data column that implements IROVector. For short-time use only, since it reflects changes in the data, but not in the length of the DoubleColumn.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public override IReadOnlyList<double> ToROVector(
	int start,
	int count
)

Parameters

start  Int32
The start index of the segment.
count  Int32
The number of elements in the segment.

Return Value

IReadOnlyListDouble
A read-only wrapper around the requested segment.
See Also