Meta.Numerics Library
CoulombG Method (L, eta, rho)
Meta.NumericsMeta.Numerics.FunctionsAdvancedMathCoulombG(Int32, Double, Double)
Computes the irregular Coulomb wave function.
Declaration Syntax
C#Visual BasicVisual C++F#
public static double CoulombG(
	int L,
	double eta,
	double rho
)
Public Shared Function CoulombG ( _
	L As Integer, _
	eta As Double, _
	rho As Double _
) As Double
public:
static double CoulombG(
	int L, 
	double eta, 
	double rho
)
static member CoulombG : 
        L:int * 
        eta:float * 
        rho:float -> float 
Parameters
L (Int32)
The angular momentum number, which must be non-negative.
eta (Double)
The charge parameter, which can be postive or negative.
rho (Double)
The radial distance parameter, which must be non-negative.
Return Value
The value of GL(η,ρ).
Remarks

For information on the Coulomb wave functions, see the remarks on CoulombF(Int32, Double, Double).

Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionL or rho is negative.
See Also