1 | initial version |
With plot, Sage assumes that the input defines the horizontal axis. So, to plot what you wnat, you'll need to use the implicit_plot command.
2 | No.2 Revision |
With plot, Sage assumes that the input defines the horizontal axis. So, to plot what you wnat, want, you'll need to use the implicit_plot command.
3 | No.3 Revision |
With plot, Sage assumes that the input defines the horizontal axis. So, to plot what you want, you'll need to use the implicit_plot command.
var('y')
implicit_plot(x==ln(y),(x,-3,3),(y,0,3))