fjames86 / fpoly

Manipulate dense multivariate polynomials
0 stars 0 forks source link

bug in lagrange-interpolate #2

Closed fjames86 closed 11 years ago

fjames86 commented 11 years ago

old-style degree is used with the local variable n = degree + 1. needs to be discarded and replaced by degree. i.e. (form-lagrange-matrix points n) -> (form-lagrange-matrix points degree)

fjames86 commented 11 years ago

fixed