cgarling / StarFormationHistories.jl

Fitting astrophysical star formation histories via CMD modelling.
MIT License
3 stars 0 forks source link

Interpolation methods #43

Open cgarling opened 2 months ago

cgarling commented 2 months ago

Currently we are using Interpolations.jl gridded linear interpolations for several applications. The performance is good as long as the input is sufficiently dense, a linear interpolation can often be sufficient.

DataInterpolations.jl is seeing a lot of development and might be worth switching to as they offer many more methods for gridded interpolation. Interpolations.jl is really best for b-splines on regular grids.