• Remix
  • Share
  • New Entry

on 8 Oct 2021
  • 38
  • 26
  • 0
  • 0
  • 249
earthmap
Name Size Bytes Class Attributes topo 180x360 518400 double topomap1 64x3 1536 double
[X,Y] = meshgrid(0:359,-89:90) ;
contour(X,Y,topo,[0 0],'k')
idx = topo<=0 ;
figure('color','k')
hold on
plot(X(idx),Y(idx),'Marker','.','color',[0 1 1])
plot(X(~idx),Y(~idx),'.w')
text(50,13,'Few million years ago','color','k','FontSize',20)
axis off
Image
Remix Tree