All Projects → bgrimstad → Splinter

bgrimstad / Splinter

Licence: mpl-2.0
Library for multivariate function approximation with splines (B-spline, P-spline, and more) with interfaces to C++, C, Python and MATLAB

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Splinter

Black-hole-simulation-using-python
Non-spinning black hole simulation based on geodesics equation
Stars: ✭ 60 (-79.66%)
Mutual labels:  interpolation
animated interpolation
A flutter interpolation plugin inspired by the React Native interpolation animation
Stars: ✭ 20 (-93.22%)
Mutual labels:  interpolation
Online-Tools
Webpage offering a wide range of online tools
Stars: ✭ 38 (-87.12%)
Mutual labels:  interpolation
bitmapflow
A tool to generate inbetweens for animated sprites, written in godot-rust
Stars: ✭ 388 (+31.53%)
Mutual labels:  interpolation
Bicubic-interpolation
Bicubic interpolation for images (Python)
Stars: ✭ 88 (-70.17%)
Mutual labels:  interpolation
motionLib
quaternion, euler angle, interpolation, cubic bezier, cubic spline, PCA, etc.
Stars: ✭ 23 (-92.2%)
Mutual labels:  interpolation
go-interpol
interpol is a Go package for doing format-string like string interpolation using named parameters.
Stars: ✭ 34 (-88.47%)
Mutual labels:  interpolation
Interpolations.jl
Fast, continuous interpolation of discrete datasets in Julia
Stars: ✭ 257 (-12.88%)
Mutual labels:  interpolation
split-ease
The JavaScript Easing function with a beginning, middle and end
Stars: ✭ 55 (-81.36%)
Mutual labels:  interpolation
bspline-fortran
Multidimensional B-Spline Interpolation of Data on a Regular Grid
Stars: ✭ 123 (-58.31%)
Mutual labels:  interpolation
commons-math-interpolation
A partial TypeScript port of the Apache Commons Math Interpolation package, including Akima cubic spline interpolation and LOESS/LOWESS local regression.
Stars: ✭ 18 (-93.9%)
Mutual labels:  interpolation
rx-ease
Spring animation operator for rxjs 🦚✨
Stars: ✭ 16 (-94.58%)
Mutual labels:  interpolation
i18n
Minimalist gettext style i18n for JavaScript
Stars: ✭ 14 (-95.25%)
Mutual labels:  interpolation
HypertextLiteral.jl
Julia library for the string interpolation of HTML and SVG
Stars: ✭ 43 (-85.42%)
Mutual labels:  interpolation
NM
Numerical Methods (NM) for BE Electrical II Year / II Part, Email: [email protected]
Stars: ✭ 13 (-95.59%)
Mutual labels:  interpolation
2dimagefilter
A collection of image filters, some especially suited to scale-up low res computer graphics.
Stars: ✭ 32 (-89.15%)
Mutual labels:  interpolation
Pulse
Pulse is a powerful tool for creating smooth, value-based animations
Stars: ✭ 19 (-93.56%)
Mutual labels:  interpolation
Verde
Processing and interpolating spatial data with a twist of machine learning
Stars: ✭ 260 (-11.86%)
Mutual labels:  interpolation
pangeo-pyinterp
Python library for optimized interpolation.
Stars: ✭ 61 (-79.32%)
Mutual labels:  interpolation
google-docs-mustaches
📝Interpolate Google Docs files using mustaches and formatters
Stars: ✭ 23 (-92.2%)
Mutual labels:  interpolation

GitHub release license

Master branch Develop branch
Build Status Build Status

SPLINTER

SPLINTER (SPLine INTERpolation) is a library for multivariate function approximation with splines. The library can be used for function approximation, regression, data smoothing, data reduction, and much more. Spline approximations are represented by a speedy C++ implementation of the tensor product B-spline.

The B-spline consists of piecewise polynomial basis functions, offering a high flexibility and smoothness. The B-spline can be fitted to data using ordinary least squares (OLS), possibly with regularization. The library also offers construction of penalized splines (P-splines).

Illustration of a B-spline Figure: Illustration of a bicubic B-spline generated with the SPLINTER library.

Sharing

SPLINTER is the result of several years of development towards a fast and general library for multivariate function approximation. The initial intention with the library was to build splines for use in mathematical programming (nonlinear optimization). Thus, some effort has been put into functionality that supports this, e.g. Jacobian and Hessian computations for the B-spline.

By making SPLINTER publicly available we hope to help anyone looking for a multivariate function approximation library. In return, we expect nothing but your suggestions, improvements, and feature requests. If you use SPLINTER in a scientific work we kindly ask you to cite it. You can cite it as shown in the bibtex entry below (remember to update the date accessed).

@misc{SPLINTER,
  title={{SPLINTER: a library for multivariate function approximation with splines}},
  author={Bjarne Grimstad and others},
  howpublished={\url{http://github.com/bgrimstad/splinter}},
  year={2015},
  note={Accessed: 2015-05-16}
}

Contributing

Everyone is welcome to use and contribute to SPLINTER. We believe that collective effort over time is the only way to create a great library: one that makes multivariate function approximation with splines more accessible to practitioners and researchers.

The current goals with the library are:

  1. To make the library more accessible by improving the interfaces and documentation
  2. To implement new features
  3. To improve the current code via testing

The simplest way to contribute to SPLINTER is to use it and give us feedback on the experience. If you would like to contribute by coding, you can get started by picking a suitable issue from the list of issues. The issues are labeled with the type of work (Bug, Docs, Enhancement, New feature, Refactoring, Tests) and level of difficulty (Beginner, Intermediate, Advanced). Some issues are also labeled as Critical, which means that they deserve our attention and prioritization.

Requirements for use

A standards compliant C++11 compiler.

Guides

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].