File:Spherical harmonics.png: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

11 March 2022

22 June 2009

  • curprev 04:2704:27, 22 June 2009imported>Caesar Schinasm 1,982 bytes +1,982 Replace Template:Information with Template:Image_Details

30 May 2009

4 September 2007

  • curprev 03:3503:35, 4 September 2007imported>Paul Wormer 1,874 bytes +1,874 {{ Information |Description= Some illustrative real spherical harmonics |Source= Prepared by the aid of Matlab: theta = [0:5:180]*pi/180; phi = [0:5:360]*pi/180; [Theta, Phi] = meshgrid(theta, phi); H = abs(1); X = H.*sin(Theta).*cos(Phi); Y = H.*sin(Theta).*sin(Phi); Z = H.*cos(Theta); subplot(2,3,1) surf(X,Y,Z) title('Y_0^0 = 1') axis equal off H = abs(cos(Theta)); X = H.*sin(Theta).*cos(Phi)...