Agilent Technologies Infiniium 8000A Programmer's Reference Manual page 856

Table of Contents

Advertisement

/******************************************************************************
*
Function name: CreateTimeData
*
Parameters:
*
*
*
*
Return value:
*
Description: This routine converts the data to time values using
*
the values that describe the waveform.
*
in global variables.
*****************************************************************************/
void CreateTimeData( unsigned long AcquiredLength, double *TimeValues )
{
unsigned long i;
for (i = 0; i < AcquiredLength; i++) {
TimeValues[i] =((Start + i) * xInc) + xOrg;
}
}
Waveform Commands
DATA? Example for Digital Channels
unsigned long AcquiredLength which is the number of data
points
double TimeValues is a pointer to the array where time
values are stored
none
30-34
These values are stored
/* calculate time values */

Advertisement

Table of Contents
loading

Table of Contents