What has happen to bspline in Maple 6?
readlib(bspline); Error, could not find `bspline` in the library
Good question. It seems to have disappeared without a trace (not even a mention on the
?updates,Maple6,compatibility
help page).
One thing I noticed by looking at the code for bspline in Release 5.1 is that it uses the totorder package, which has been discontinued (but I don’t think it would be too hard to modify the code to use assume rather than totorder).
Below is a link to a b-spline generator I wrote that doesn’t depend on Maple’s built-in routine. It also uses Carl de Boor’s recursive formulas rather than the definition in terms of divided differences of a truncated power function, and thus doesn’t require a-priori ordering of the knots.
http://www.emba.uvm.edu/~wright/mapleprgs/makebsp
Hope this is useful to others out there: