| Open scope and paste this script into the
        command window. Then press <Ctrl + R> to plot an sinefunction the select
        the menu calculator/Functions/rotate 60 Deg
 set units = radpi =4*atan(1)
 numpoints = 1000
 time = (vector(numpoints)/(numpoints-1)*1m)
 newplot sineplot time
 setplot sineplot
 y = sin(2*pi*time*1k)
 plot y
 homecursors
 set units = deg
 |