| 1 | initial version |
You can also use the detect_poles option to not draw the vertical line
plot(1/(x-3),(x,0,5), detect_poles=True,ymin=-2,ymax=2)
| 2 | No.2 Revision |
You can also use the detect_poles detect_poles option to not draw the vertical line
plot(1/(x-3),(x,0,5), detect_poles=True,ymin=-2,ymax=2)
Or even better, have it automatically draw the asymptote:
plot(1/(x-3),(x,0,5), detect_poles='show',ymin=-2,ymax=2)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.