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