• Remix
  • Share
  • New Entry

on 25 Oct 2021
  • 2
  • 25
  • 0
  • 0
  • 279
figure('pos',[0 0 980 735]*1.5,'Color','k')
earthmap;
Name Size Bytes Class Attributes topo 180x360 518400 double topomap1 64x3 1536 double
d=parula(15);
colormap(d);
[x,y,z]=sphere(90);
colororder(d)
d=fft(eye(35));
d(:,17)=NaN;
plot(d);
hold;
Current plot held
for j=[0,45]
k=[1:46]+j;
surface(x(k,:),y(k,:),z(k,:)+j*.02,'FaceC','t','EdgeC','n','CData',topo(k(1)*2:k(46)*2-2,:));
end
axis equal off
%set(gca,'pos',[0 0 1 1])
view(3)
Remix Tree