Specifications

Section 8. Processing and Math Instructions
8-14
The sum of the AC bins (excluding DC) of the Power Spectrum is the
Variance (AC Power) of the time series.
The factor of 2 in the Power(i) calculation is due to the power series being
mirrored about the Niquist frequency N/(2*T); only half the power is
represented in the FFT bins below N/2, with the exception of DC. Hence,
DC does not have the factor of 2.
The Inverse FFT option assumes that the data array input is the transform
of a real time series. Filtering is performed by taking an FFT on a data set,
zeroing certain frequency bins, and then taking the Inverse FFT.
Interpolation is performed by taking an FFT, zero padding the result, and
then taking the Inverse FFT of the larger array. The resolution in the time
domain is increased by the ratio of the size of the padded FFT to the size
of the unpadded FFT. This can be used to increase the resolution of a
maximum or minimum, as long as aliasing is avoided.
FIX (Number)
Used to return the integer portion of a number.
See INT.
Frac (Number)
Returns the fractional part of a number.
Syntax
x = FRAC (Number)
Remarks
Returns the fractional portion of the value in the number argument.
GetRecord (Dest, TableName, RecsBack)
Retrieves one record from a data table.
Syntax
GetRecord (Dest, TableName, RecsBack)
Remarks
The GetRecord instruction retrieves one entire record from a data table. The
destination array must be dimensioned large enough to hold all the fields in the
record.
Parameter
& Data Type
Enter
Dest
Array
The destination variable array in which to store the fields of the record. The
array must be dimensioned large enough to hold all the fields in the record.
TableName
name
The name of the data table from which to retrieve the record.
RecsBack
Const. or
variable
The number of records to back up and retrieve data (the most recent record
is considered record 1).