Click or drag to resize

PolynomialsLaguerreL Method

Computes the value of the Laguerre polynomial of degree n and its first and second derivatives at a given point.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static void LaguerreL(
	int n,
	double a,
	double x,
	out double y,
	out double dy,
	out double d2y
)

Parameters

n  Int32
Degree of the polynomial (>= 0).
a  Double
Parameter (> -1).
x  Double
Point at which the computation is performed (x >= 0).
y  Double
Output: value of the polynomial at x.
dy  Double
Output: value of the first derivative at x.
d2y  Double
Output: value of the second derivative at x.
Remarks
Note: This C++ implementation is based on the Fortran function VALAPO from "Fortran routines for spectral methods" by Daniele Funaro Department of Mathematics University of Pavia Via Abbiategrasso 209, 27100 Pavia, Italy e-mails: fun18@ipvian.ian.pv.cnr.it funaro@dragon.ian.pv.cnr.it
See Also