awvPlotSignals
awvPlotSignals(l_signalList[?plotStylet_plotStyle] [?graphTypet_graphType] [?graphModifiert_graphModifier] [?waveTypeg_waveType] ) =>t/nil
Description
Plots the signals specified in a list.
Arguments
Value Returned
Examples
The following example plots the signals net10 and out from the results tran-tran in the results directory ampsim.raw.
awvPlotSignals('(("/servers/user/design/ampsim.raw" (("tran-tran" ("net10" "out"))))))
The following example plots the signals net10 and out from the results tran-tran in the results directory ampsim.raw, and signals jitter and delay from results tran-tran in the results directory prbs.raw.
awvPlotSignals('(("/servers/user/design/ampsim.raw" (("tran-tran" ("net10" "out")))) ("/servers/user/design/prbs.raw" (("tran-tran" ("jitter" "delay"))))))
The following example plots the signals net10, out, jitter, and delay. Note that net10 and out signals have dB10 as their y-axis because these signals have been plotted from an ac results.
awvPlotSignals('(("/servers/user/design/ampsim.raw" (("ac-ac" ("net10" "out")))) ("/servers/user/design/prbs.raw" (("tran-tran" ("jitter" "delay"))))) ?graphModifier "dB10")
Return to top