SetDoubleQuantityData
This method is used to record the computed quantity data for each output
that is computed. Please note that unless all the sweeps are reduced,
this should be used in conjunction with SetSweepsData.
UI Access
|
NA
|
Parameters
|
|
|
|
<qtyName> |
String |
Name of the quantity. |
<qtyData> |
List<Floats> |
Quantity data
for the specified quantity. |
|
Return Value
|
Boolean. If true, the event was handled successfully. If false, it was not. |
Python Syntax
|
SetDoubleQuantityData (<qtyName>,<qtyData> )
|
Python Example
|
doubleList = [12.3, 14.5, 16.7]
outData.SetDoubleQuantityData("V1PlusV2", doubleList)
|