Top "Bspline" questions

A B-spline (basis spline) is the generalization of the Bézier curve which has minimal support with respect to a given degree, smoothness, and domain partition.

B-spline interpolation with Python

I am trying to reproduce a Mathematica example for a B-spline with Python. The code of the mathematica example reads …

python bspline
scipy BSpline fitting in python

This is my first time using BSpline, and I want to fit a curve to my data points. I've tried …

python scipy smoothing curves bspline
B-spline curves

I have a set of points which I want to smooth using B-spline curves. My question is how can I …

c++ curves splines bspline
interpretation of the output of R function bs() (B-spline basis matrix)

I often use B-splines for regression. Up to now I've never needed to understand the output of bs in detail: …

r matrix bspline
How to interpret lm() coefficient estimates when using bs() function for splines

I'm using a set of points which go from (-5,5) to (0,0) and (5,5) in a "symmetric V-shape". I'm fitting a model …

r regression lm spline bspline