- /
-
Membrane Clock
on 29 Oct 2021
- 9
- 21
- 6
- 0
- 277
figure('Color','k')
[x,y]=meshgrid(linspace(-3,3,1000));
imagesc(-exp(-x.^2-y.^2))
shading interp
colormap(1-hot)
axis equal
axis off
for n=1:12
xP= cosd(30*(3-n))/3+.41;
yP= sind(30*(3-n))/3+.37;
xL=0.1938;
yL=0.2717;
axes('Un','n','Po',[xP yP xL yL])
surf(membrane(n))
shading interp
axis off
end