Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. cplot = @(r,x0,y0) plot(x0 + r*cos(linspace(0,2*pi)),y0 + r*sin(linspace(0,2*pi)),'-');
  2.  
  3.  
  4.  
  5. hold on
  6. cplot(6.5,0,-0.46);
  7. cplot(3,0,3);
  8. cplot(3,-3,-2.2);
  9. cplot(3,3,-2.2);
  10. cplot(1.37,0,4.6);
  11. cplot(1.37,1.36,2.2);
  12. cplot(1.37,-1.36,2.2);
  13. cplot(1.37,-3,-0.6);
  14. cplot(1.37,-4.38,-2.98);
  15. cplot(1.37,-1.62,-2.98);
  16. cplot(1.37,3,-0.6);
  17. cplot(1.37,4.38,-2.98);
  18. cplot(1.37,1.62,-2.98);
  19. hold off
  20. axis equal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement