GetDoubleProbeData
This is the primary mechanism by which the UDO script obtains the probe
data (as double precision values) for its compute process.
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
|
Double array of data for the specified probe if the probe exists
or null if the probe is unknown. |
Python Syntax
|
GetDoubleProbeData (<probeName>)
|
Python Example
|
# doubleData is a list of floats
doubleData = inData.GetDoubleProbeData("probe1")
|