Guest User

Untitled

a guest
Sep 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. documentclass[tikz,border=3.14mm]{standalone}
  2. usepackage{pgfplots}
  3. pgfplotsset{compat=1.16}
  4. begin{document}
  5.  
  6. begin{tikzpicture}[declare function={f(x)=1/(sqrt(1-x*x));}]
  7. begin{axis}[samples=101,
  8. xlabel=$x$,ylabel=$y$,
  9. ymax=10, ymin=-1, xmin=0, xmax=1,
  10. domain=0:1,
  11. ]
  12. addplot [mark=none,smooth] {f(x)};
  13. addlegendentry{$1/sqrt{1-x^2}$}
  14. addplot+ [mark=none,smooth] {asin(x)*pi/180};
  15. addlegendentry{$arcsin(x)$}
  16. end{axis}
  17. end{tikzpicture}
  18. end{document}
Add Comment
Please, Sign In to add comment