acos
Description Plot the arc-cosine of the current trace.
 
Hot Key  none
Script alias previous = current
result = acos(current)
plotf result acos(%s) previous
Example

Open scope and paste this script into the command window.
Then press <Ctrl + R> to plot a cosine wave, the select the menu calculator/trig/acos

set units = rad
pi =4*atan(1)
numpoints = 1000
time = (vector(numpoints)/(numpoints-1)*1m)
newplot sineplot time
setplot sineplot
y = cos(2*pi*time*1k)
plot y
homecursors

 asin
Description Plot the arc-sine of the current trace.
 
Hot Key  none
Script alias previous = current
result = asin(current)
plotf result asin(%s) previous
Example

Open scope and paste this script into the command window.
Then press <Ctrl + R> to plot a sine wave, the select the menu calculator/trig/asin

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
homecursors

 atan
Description Plot the arc-tangent of the current trace.
 
Hot Key  none
Script alias previous = current
result = atan(current)
plotf result atan(%s) previous
Example

Open scope and paste this script into the command window.
Then press <Ctrl + R> to plot a tangent wave, the select the menu calculator/trig/acos

set units = rad
pi =4*atan(1)
numpoints = 1000
time = (vector(numpoints)/(numpoints-1)*1m)
newplot sineplot time
setplot sineplot
y = tan(2*pi*time*1k)
plot y
homecursors

 cos
Description Plot the cosine of the current trace.
 
Hot Key  none
Script alias previous = current
result = cos(current)
plotf result cos(%s) previous
Example

Open scope and paste this script into the command window.
Then press <Ctrl + R> to plot a cosine wave, the select the menu calculator/trig/cos

pi =4*atan(1)
numpoints = 1000
time = (vector(numpoints)/(numpoints-1)*1m)
newplot sineplot time
setplot sineplot
y = 2*pi*time*1k
plot y
homecursors

 sin
Description Plot the sine of the current trace.
 
Hot Key  none
Script alias previous = current
result = sin(current)
plotf result sin(%s) previous
Example

Open scope and paste this script into the command window.
Then press <Ctrl + R> to make an x axis vector then select the menu calculator/trig/sin

pi =4*atan(1)
numpoints = 1000
time = (vector(numpoints)/(numpoints-1)*1m)
newplot sineplot time
setplot sineplot
y = 2*pi*time*1k
plot y
homecursors

 tan
Description Plot the tangent of the current trace.
 
Hot Key  none
Script alias previous = current
result = tan(current)
plotf result tan(%s) previous
Example

Open scope and paste this script into the command window.
Then press <Ctrl + R> to make an x axis vector then select the menu calculator/trig/tan

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
homecursors