Plot with no scale on the y axis
If I plot a function that generates huge numbers, then sage normalizes it between -1 and 1. I don't like this behaviour because it hides the real values on the y scale.
For example, if I do
plot(10^6 * x, -1, 1)
what I get is a plot between -1 and 1 on both the axis. Is there a way to have the values on the y axis with the right scale?
IMNSHO, this is a (minor) bug in
plot
, and should be reported as such...