Releases: JuliaMath/FastChebInterp.jl
Releases · JuliaMath/FastChebInterp.jl
v1.3.1
FastChebInterp v1.3.1
Merged pull requests:
- Bump julia-actions/setup-julia from 1 to 2 (#28) (@dependabot[bot])
- Bump actions/checkout from 5 to 6 (#29) (@dependabot[bot])
- Bump julia-actions/cache from 2 to 3 (#33) (@dependabot[bot])
- Bump codecov/codecov-action from 5 to 6 (#34) (@dependabot[bot])
- Bump julia-actions/setup-julia from 2 to 3 (#35) (@dependabot[bot])
- Avoid errors in domain bounds check by checking before the transformation (#37) (@hersle)
- Update Project.toml: bump to 1.3.1 (#38) (@stevengj)
Closed issues:
- Domain error when evaluating interpolation with broadcasting (#36)
v1.3.0
FastChebInterp v1.3.0
- New
chebinterp(f::Function, order, lb, ub)method (#30) that callschebpointsfor you. - New
chebinterp(f::Function, lb, ub)method (#32) that adaptively determines the order. - New
roots(::ChebPoly)function (#31) to find the real roots of the polynomial interpolant, along withcolleague_matrix(::ChebPoly)if you want to compute all the roots. - Fixed a type instability in
chebinterp(#19).