• Remix
  • Share
  • New Entry

on 3 Oct 2022
  • 1
  • 26
  • 0
  • 0
  • 271
SQ = 50;
figure
shading interp;
M = peaks(SQ);
surfc(M,"EdgeColor","none")
for it = 1:4
[m ,n] = size(M);
M = [peaks(m)*0.5 peaks(m) peaks(m)*0.5 ; peaks(m) M peaks(m) ; peaks(m)*0.5 peaks(m) peaks(m)*0.5] ;
figure
surfc(M,"EdgeColor","none")
view([33 33])
axis off
shading interp;
end

Image

Remix Tree