Baby curve
theta = linspace(0,8*pi,10000);
P=[cos(theta);sin(theta)];
polar(exp(sin(theta))+P(1,:),P(2,:))
Baby embryon curve
Organs curve
theta = linspace(0,8*pi,10000);Guess!
P=[cos(theta);sin(theta)];
polar(-sin(theta)+P(1,:),P(2,:))

Staircase curve
n=1:100000;
m=cumsum(1./n.^(1+sin(n*pi/5000)));
plot(n,m);
Exotic Logistic Series TO BE STUDIED
n=1:100000;
m=cumsum(1./n.^(1+1./n));
plot(n,m);
Comments
Post a Comment