I want to plot multiple bounded functions in gnuplot. I.e. plot x from 0 to 2 and x^2 from 1 to 3 and have them show up together.
How do you plot functions with different bounds?
I know how to do a piecewise function, like (x < 1 ? x : x**2). This is not what I want to do.