ChronoP.DataCol()

<< Click to Display Table of Contents >>

Navigation:  Explain™ Control Language  > Library Routines > Curve classes > class CHRONOP >

ChronoP.DataCol()

Description

Create and return an object of the class DATACOL.

 

The object contains data extracted from one column of the ChronoP object's data array. The data, once extracted, can then be submitted to other objects for further calculation. For example, a class LINFIT object performs a linear-regression analysis on two DATACOL objects.

 

A new DATACOL object is automatically created by the call to ChronoP.DataCol(). It is usually transient, existing only for one function call.

 

Type

INSTANCE FUNCTION

 

Usage

DataCol = ChronoP.DataCol(ColumnCode)

 

ColumnCode

INDEX

A code identifying the column to be used:

0 = Time

1 = Measured Voltage

2 = Uncompensated Voltage

3 = Applied Current

4 = Signal sent to Control Amplifier

5 = Measured Aux Channel Voltage

6 = IE range used

7 = Overloads

 

Or use the predefined constants:

CHRONOP_T = Time

CHRONOP_Vf = Measured Voltage

CHRONOP_Vu = Uncompensated Voltage

CHRONOP_Im = Applied Current

CHRONOP_Sig = Signal sent to Control Amplifier

CHRONOP_Ach = Measured Aux Channel Voltage

CHRONOP_IERange = IE range used

CHRONOP_Over = Overloads

DataCol

DATACOL

The new object containing the data extracted from the CHRONOP data array.