• Remix
  • Share
  • New Entry

on 27 Oct 2021
  • 6
  • 7
  • 0
  • 0
  • 180
% https://upload.wikimedia.org/wikipedia/commons/e/e7/Hydrogen_Density_Plots.png
r=meshgrid(0:.1:25);
t=r'*2*pi/25;
P=exp(-r/3).*r.^2.*cos(t).*sin(t);
x=r.*cos(t);
y=r.*sin(t);
contourf(y,x,abs(P),1e3,'edgec','n');
caxis([0 3]);
colormap hot;
axis equal off;
set(gcf,'color','k');
Remix Tree