SetSweepsData

Each quantity that is computed by the UDO can be associated with a sweep. If it is, the values that make up the sweep's data points must be specified using this call.

UI Access NA
Parameters
Name Type Description
<sweepName > String Name of the sweep
<sweepData> List<floats> Sweep data for the specified sweep.
Return Value Boolean. If true, the event was handled successfully. If false, it was not.

 

Python Syntax SetSweepsData (<sweepName>,<sweepData>)
Python Example
sweepList = [12.3, 14.5, 16.7]   
outData.SetSweepsData("Freq", sweepList)