- /
-
Knot
on 9 Oct 2021
- 15
- 36
- 0
- 0
- 174
% This was a "mistake" I saved from a few years back. The intended function
% was supposed to create a completely different curve. Always save your
% cool mistakes!
t=1000:5:3000;
p=(200*exp(.5))*(15*(-t+2000).*exp(-((-t+2000).^2)/(2*200^2)))/(200^2);
r=5*cumsum(p)./1E3;
x=cos(r)*.015;
y=sin(r)*.015;
plot(cumsum(y),cumsum(x),LineW=4)
axis equal off