- /
-
Membranes
on 29 Oct 2021
- 4
- 21
- 7
- 0
- 226
figure('Color','k')
axis off
ax=gca;
ax=ax.Position;
for n=1:12
xP=(rem(n-1,4)/4)*ax(3)+ax(1);
yP=((2-floor((n-1)/4))/3)*ax(4)+ax(2);
xL=(1/4)*ax(3);
yL=(1/3)*ax(4);
axes('Un','n','Po',[xP yP xL yL])
surf(membrane(n))
shading interp
axis off
end