• Remix
  • Share
  • New Entry

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