Advertisement
xXx_Fortis_xXx

Untitled

Jun 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.15 KB | None | 0 0
  1. function foo2 (a)
  2.     figure();
  3.     hold on;
  4.     t = [0:0.01 * pi:2 * pi];
  5.     for i = [1:length(a)]
  6.         plot((a(i)^2) * cos(t), (a(i)^2 - 1) * sin(t));
  7.     end
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement