Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. documentclass[11pt]{article}
  2. usepackage{amsmath}
  3. usepackage{amssymb}
  4. usepackage{subfigure}
  5.  
  6. usepackage[font=footnotesize]{caption}
  7. usepackage{pgfplots}
  8. usepackage{tikz}
  9.  
  10. % Scriptsize axis style.
  11. pgfplotsset{every axis/.append style={tick label style={/pgf/number format/fixed},font=scriptsize,ylabel near ticks,xlabel near ticks,grid=major}}
  12.  
  13. begin{document}
  14. begin{figure}
  15. begin{tikzpicture}[samples=200,smooth]
  16. begin{scope}
  17. clip(-4,-1) rectangle (4,4);
  18. draw plot[domain=0:360] ({cos(x)*sqrt(20/(sin(2*x)+2))},{sin(x)*sqrt(20/(sin(2*x)+2))});
  19. draw plot[domain=0:360] ({cos(x)*sqrt(16/(sin(2*x)+2))},{sin(x)*sqrt(16/(sin(2*x)+2))});
  20. draw plot[domain=0:360] ({cos(x)*sqrt(12/(sin(2*x)+2))},{sin(x)*sqrt(12/(sin(2*x)+2))});
  21. draw plot[domain=0:360] ({cos(x)*sqrt(8/(sin(2*x)+2))},{sin(x)*sqrt(8/(sin(2*x)+2))});
  22. draw plot[domain=0:360] ({cos(x)*sqrt(4/(sin(2*x)+2))},{sin(x)*sqrt(4/(sin(2*x)+2))});
  23. draw plot[domain=0:360] ({cos(x)*sqrt(1/(sin(2*x)+2))},{sin(x)*sqrt(1/(sin(2*x)+2))});
  24. draw plot[domain=0:360] ({cos(x)*sqrt(0.0625/(sin(2*x)+2))},{sin(x)*sqrt(0.0625/(sin(2*x)+2))});
  25.  
  26. draw[->,blue,ultra thick] (-2,3.65) to (-1.93,3);
  27. draw[->,blue,ultra thick] (-1.93,3) to (-1.75,2.4);
  28. draw[->,blue,ultra thick] (-1.75,2.4) to (-1.5,1.8);
  29. draw[-`enter code here`>,blue,ultra thick] (-1.5,1.8) to (-1.15,1.3);
  30. node at (-1.4,3.8){scriptsize $w[0]$};
  31. node at (-1.2,3.2){scriptsize $w[1]$};
  32. node at (-1.05,2.6){scriptsize $w[2]$};
  33. node at (-0.8,2){scriptsize $w[3]$};
  34. node at (-0.6,1.4){scriptsize $w[4]$};
  35. end{scope}
  36. end{tikzpicture}
  37. end{figure}
  38. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement