Guest User

Untitled

a guest
Feb 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. documentclass[10pt, a4paper]{article}
  2.  
  3. usepackage{pgfplots}
  4.  
  5. begin{document}
  6.  
  7. begin{tikzpicture}
  8. begin{axis}[xmin = -5, xmax = 5,
  9. ymin = -1.5, ymax = 1.5]
  10.  
  11. addplot[mark = none] {tanh(x)};
  12.  
  13. addplot[mark = none, dashed] {1};
  14.  
  15. addplot[mark = none, dashed] {-1};
  16.  
  17. end{axis}
  18.  
  19. end{tikzpicture}
  20.  
  21. end{document}
Add Comment
Please, Sign In to add comment