GetInterpolationOrdersData
Returns the interpolation orders that are associated with the probe-data.
The probe data is specified at each value of the various sweeps. Any value
in between the sweep data points, can use the interpolation data to get a
possibly more accurate (compared to linear interpolation) inter-sweep value.
UI Access
|
NA
|
Parameters
|
|
|
|
<probeName> |
String |
Name of the probe for which data is requested. This is one of the many probes supplied
during a call to the UDO's GetInputUDSParams method.
Each probeName must be unique within an UDO. |
|
Return Value
|
Byte array of interpolation order for the specified probe. These
are to be treated as 8-bit signed integers, that is, their values range from 0-127. |
Python Syntax
|
GetInterpolationOrdersData(<probeName>)
|
Python Example
|
# interData is C# Array of bytes (integers in Python)
interData = inData.GetInterpolationOrdersData(kProbeNames[0])
for interValue in theDict:
# interValue and order are integers
order = interValue
|