Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{tikz}
  3. usepackage{pgfplots}
  4. begin{document}
  5. begin{tikzpicture}
  6. begin{axis}[
  7. domain=0:5,
  8. xmin=0, xmax=3,
  9. ymin=0, ymax=3.5,
  10. samples=500,
  11. width=11cm,
  12. height=6cm,
  13. axis y line=center,
  14. axis x line=middle,
  15. ytick={1},
  16. xtick={1}
  17. ]
  18. addplot[red, very thick, mark=none, domain=0:4] {x^2/sqrt((1-x^2)^2)};
  19. end{axis}
  20. end{tikzpicture}
  21. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement