Hello,
in gnuplot it is possible to have two different y-Axis. This can be interesting for example, if you want to compare two functions. For example
plot2d([sin(x),100*sin(x+0.1)+3])
Visually it is not possible to analyse the phase shift between the two functions. Taking the following gnuplot script
----------------------------------------
set ytics nomirror
set y2tics autofreq
set autoscale y2fix
set autoscale yfix
plot [0:10] sin(x) axis x1y1,100*sin(x+0.1)+2 axis x1y2
-----------------------------------------
the phase shift is obvious already visually.
Is it possible with maxima to plot the functions on different y-axes somehow?
Thank you for your answers!
Best regards
Stefan