- Fix doctests on Julia ≥ 1.7. (#29)
- Fix doctests on Julia ≥ 1.6. (#23)
- Fix tests on Julia ≥ 1.6. (#18)
-
bsplines!(dest, args...)
now returns anOffsetArray
that wrapsdest
, making its output equal to that ofbsplines(args...)
. (#8) -
splinevalue
now accepts a keyword argumentworkspace
for providing a vector to store intermediate values in order to avoid unnecessary allocations. (#10) - When calculating derivatives,
bsplines
andbsplines!
now accept a keyword argumentderivspace
for providing a matrix to store intermediate values in order to avoid unnecessary allocations. (#16) -
BSplineBasis
andIntervalIndices
now support reverse iteration viaIterators.reverse
. (#15) - The default printing of
BSplineBasis
andSpline
now uses the compact style for printing the breakpoint and coefficient vectors. (#9) -
BSplineBasis
andIntervalIndices
now implementIteratorSize
andeltype
correctly. (#14)
-
length(::BSplineBasis)
now always returns a value of typeInt
. (#7)
Initial release.