lastVal
lastVal(o_waveform) =>n_value/nil
Description
Returns the last value at which the specified waveform ends on x axis.
Arguments
Value Returned
|
The last value at which the specified waveform ends on x axis |
Examples
The following example returns the waveform ID of the eye diagram eye created from the jitter signal.
eye=eyeDiagram(v("jitter" ?result "tran-tran" ?resultsDir "/servers/user/design/prbs.raw") 200n 400u 2*40n ?autoCenter t )
=> srrWave:0x336321f0
The following example returns the waveform ID of the curve representing the left-side bit error rate (BER) curve for the eye diagram eye.
waveform=eyeBERLeft(eye 200n 400u 80n 0.5 100)
=> srrWave:0x336322e0
The following example returns the last value at which the waveform returned by the function eyeBERLeft ends on x axis.
lastVal(waveform)
=> 2.353111e-08
Indicates that the waveform ends at x=23.53111ns.
Return to top