Generalized Laguerre polynomial

버전 1.0.0.0 (1.07 KB) 작성자: Mattthias Trampisch
LaguerreGen calculates the generalized Laguerre polynomial L{n, alpha} for real valued alphas
다운로드 수: 4.8K
업데이트 날짜: 2007/8/16

라이선스 없음

LaguerreGen calculates the generalized Laguerre polynomial L{n, alpha}

This function computes the generalized Laguerre polynomial L{n,alpha}.
If no alpha is supplied, alpha is set to zero and this function calculates the "normal" Laguerre polynomial.

Input:
- n = nonnegative integer as degree level
- alpha >= -1 real number (input is optional)

The output is formated as a polynomial vector of degree (n+1) corresponding to MATLAB norms (that is the highest coefficient is the first element).

Possible usage:
- polyval(LaguerreGen(n, alpha), x) evaluates L{n, alpha}(x)
- roots(LaguerreGen(n, alpha)) calculates roots of L{n, alpha}

Calculation is done recursively using matrix operations for very fast execution time. The formula is taken from Szegö: Orthogonal Polynomials, 1958, formula (5.1.10)

인용 양식

Mattthias Trampisch (2024). Generalized Laguerre polynomial (https://www.mathworks.com/matlabcentral/fileexchange/15916-generalized-laguerre-polynomial), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2006b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Polynomials에 대해 자세히 알아보기
도움

받음: AssociatedLaguerrePoly.m

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

One minor pre-allocation error removed