summaryrefslogtreecommitdiff
path: root/75/CH4/EX4.6/ex_5.sce
blob: 61e424105b010a8c815fbe85f2e5bbdaf39070fe (plain)
1
2
3
4
5
6
7
8
        //    PG (215)

//    for laguerre polynomials,
//    L(n+1)=1*[2*n+1-x]*L(n)/(n+1) - n*L(n-1)/(n+1)

//    for Legendre polynomials,

//    P(n+1)= (2*n +1)*x*P(n)/(n+1) - n*P(n-1)/(n+1)