• Remix
  • Share
  • New Entry

on 5 Oct 2022
  • 2
  • 14
  • 0
  • 0
  • 266
clc;clear;close all
t=0:.1:360;
r=sind(4*t)+1.5;
x=r.*cosd(t);
y=r.*sind(t);
fill(x,y,'m')
hold on
fill(.5*cosd(t),.5*sind(t),'r')
fill(.5*cosd(t)-2.1,.5*sind(t)+1.5,'y:')
a=1;b=2;
r=a*b./sqrt((b*cosd(1:90).^2)+(a*sind(1:90)).^2);
x=r.*cosd(1:90);y=-r.*sind(1:90);
set(gca,'Color','g')

Image

Remix Tree