<p>Is there a way to plot a single graph with multiple functions, where I can set a different scale for each function?</p>
<p>I want to get something similar to this:</p>
<p><a href="http://www.mapleprimes.com/viewfile/2818"><img alt="" src="http://www.mapleprimes.com/scripts/image.php?image=http://www.mapleprimes.com/files/9471_plot.png&width=300&height=300" /></a></p>
<p>I can plot multiple functions in one graph with display(); but it is the multiple scales part that's giving me a headache...</p>
<p> </p>
<p>Thanks</p>
<p>Thomas</p>
plots[dualaxisplot]
One of the new features in Maple 12 is the ability to create plots with two different scales. Here are three examples from ?plots[dualaxisplot]. Note that the second one is an animation. Very nice, even though I'm not sure these plots have a whole lot of meaing in and of themselves.
dualaxisplot(inequal({x-y <= 1, 0 < x+y}, x = -3 .. 3, y = -3 .. 3, optionsexcluded = (color = white)), conformal(z^2, z = 0 .. 2+2*I));I hope this is helpful.
Doug
Very helpful!
Very helpful! Thanks.
Thomas