Computes the irregular Coulomb wave function.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
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
)

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).

See Also