Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. begin{document}
  2. begin{tikzpicture}
  3. begin{axis}[
  4. axis lines = center,
  5. xlabel = $x$,
  6. ylabel = {$y$},
  7. xmax = {4},
  8. xmin = {-1},
  9. ymax = {2},
  10. ymin = {-2},
  11. legend pos = outer north east
  12. ]
  13. addplot [
  14. domain=-10:10,
  15. samples=100,
  16. color=black,
  17. ]
  18. {x^(1/2)};
  19. addlegendentry{$y=sqrt{x}$}
  20. addplot [
  21. domain=-5:5,
  22. samples=100,
  23. color=blue,
  24. ]
  25. {x^(1/4)};
  26. addlegendentry{$y=x^{frac{1}{4}}$}
  27. end{axis}
  28. end{tikzpicture}
  29. begin{tikzpicture}
  30. begin{axis}[
  31. axis lines = center,
  32. xlabel = $x$,
  33. ylabel = {$y$},
  34. xmax = {4},
  35. xmin = {-4},
  36. ymax = {2},
  37. ymin = {-2},
  38. legend pos = north west
  39. ]
  40. addplot [
  41. domain=-10:10,
  42. samples=100,
  43. color=black,
  44. ]
  45. {x^(1/3)};
  46. addlegendentry{$y=x^{frac{1}{3}}$}
  47. addplot [
  48. domain=-10:10,
  49. samples=100,
  50. color=blue,
  51. ]
  52. {x^(1/5)};
  53. addlegendentry{$y=x^{frac{1}{5}}$}
  54. end{axis}
  55. end{tikzpicture}
  56. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement