maeGetAnalysis
maeGetAnalysis(t_testName t_analysis[ ?includeEmptyg_includeEmpty] [ ?optiont_option] [ ?sessiont_sessionName] ) =>l_options/ nil
Description
Returns a list containing name-value pairs of the options set for the given analysis. By default, the function returns only those options for which the value is not empty. If the g_includeEmpty argument is set to t, it returns all the options. You can also specify the name of a specific option for which you want to know the value.
Arguments
|
Name of the analysis for which you want to return the settings. |
||
|
Name of the specific option for which you want to return the value. |
||
Value Returned
Examples
Returns the list containing name-value pairs of the options set for AC analysis for the given maestro session.
sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeGetAnalysis( "solutions:ampTest:2" "ac" )
=> (("anaName" "ac") ("sweep" "Frequency") ("rangeType" "Start-Stop") ("start" "1") ("stop" "10G" ("incrType" "Logarithmic") ("stepTypeLin" "Step Size") ("stepTypeLog" "Points Per Decade") ("dec" "20") ("outType" "Voltage") ("srcType" "isource") ("perturbation" "linear") ("special" "None") ("save" "selected") ("oppoint" "no") ("annotate" "no") )
Return to top