Click or drag to resize

PolynomialsSphericalHarmonicY Method

Computes the spherical harmonics Y_lm(theta,phi) with l and m integers satisfying -l <= m <= l and arbitrary angles theta and phi.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Complex SphericalHarmonicY(
	int l,
	int m,
	double theta,
	double phi
)

Parameters

l  Int32
First integer.
m  Int32
Second integer, must be in the range -l <= m <= l.
theta  Double
First angle.
phi  Double
Second angle.

Return Value

Complex
The spherical harmonics Y_lm(theta,phi).
See Also