GetSweepNamesForProbe
Retrieves a list of sweep quantity names associated with a given probe.
This also indicates the dimensionality of the data. One name implies
that the probe-data is 2D (probe-quantity vs Sweep Quantity) and two
names implies 3D data (probe-quantity vs Sweep 1 X Sweep 2).
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
|
IList<string> - list of sweep names for the current probe
name.
|
Python Syntax
|
GetSweepNamesForProbe(<probeName>)
|
Python Example
|
# sweepNames is C# Array of strings
sweepNames = inData.GetSweepNamesForProbe("FarFieldsProbe")
|