Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. usepackage{pgfplots}
  2. usepackage{pst-math}
  3.  
  4. begin{tikzpicture}
  5. begin{axis}[
  6. domain=-10:10,
  7. xscale=1.5,yscale=1,
  8. xmin=-3, xmax=3,
  9. ymin=-100, ymax= 100,
  10. samples=1000,
  11. axis lines=center,
  12. ]
  13. addplot+[mark=none] {atan(x) - x/(1+x^2)};
  14. end{axis}
  15. end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement