Open scope and paste this script into the
command window.
Then press <Ctrl + R> to plot a sine wave
Select "Build/pules/Pulse 50Pct, then
multiply the result * y and plot it.
(result = result * y plot result)
set units = rad
pi =4*atan(1)
numpoints = 1000
time = (vector(numpoints)/(numpoints-1)*1m)
newplot sineplot time
setplot sineplot
y = sin(2*pi*time*1k)
plot y
set units = deg |