MergeTablesSetColumnFromFractionalIndex Method |
Fills destination column with values from an original column by help of a fractional index.
Namespace: Altaxo.DataAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void SetColumnFromFractionalIndex(
this DataColumn destinationColumn,
DoubleColumn fractionalIndex,
DataColumn originalColumn
)
Parameters
- destinationColumn DataColumn
- Column to fill. The old data in this column will be cleared before.
- fractionalIndex DoubleColumn
- Array of fractional indices. Each item points into the originalColumn to that value that should be included in the master column at the item's index.
- originalColumn DataColumn
- Column with the source data.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
DataColumn. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also