axlAddOutputSignal
axlAddOutputSignal(t_sessionName t_testName t_signalName[?typet_outputType] [?outputNamet_outputName] [?plotg_plot] [?saveg_save] ) =>t/t_error
Description
Adds a signal to a test setup.
Arguments
|
Name of the signal to be added to the outputs of the given test. |
|
|
Possible values:
|
|
Value Returned
Examples
The following example code shows how to use the axlAddOutputExpr function to add outputs in batch mode:
session = axlGetWindowSession()
testname = "voltage_divider:voltage_divider:1"
axlAddOutputSignal(session testname "/net1")
=> t
axlAddOutputSignal(session testname "V0/PLUS" ?type "terminal" ?plot t )
=> t
axlAddOutputSignal(session testname "/net2" ?outputName "Out1" ?type "net")
=> t
Return to top