Top "Spline" questions

A spline is a sufficiently smooth polynomial function that is piecewise-defined, and possesses a high degree of smoothness at the places where the polynomial pieces connect

Akima interpolation of an array of doubles

Assuming I have an array of doubles, what's a good algorithm to sample this series using Akima interpolation? I'm too …

c# interpolation spline
B Spline confusion

I realise that there are posts on the topic of B-Splines on this board but those have actually made me …

r regression spline smoothing
The intersection point between a spline and a line

I'm trying to find a way to calculate the intersection between a b-spline and a straight line. So far Google …

line intersection spline
Smooth spline representation of an arbitrary contour, f(length) --> x,y

Suppose I have a set of x,y coordinates that mark points along contour. Is there a way that I …

numpy scipy curve-fitting bezier spline
Cubic Spline Python code producing linear splines

edit: I'm not looking for you to debug this code. If you are familiar with this well-known algorithm, then you …

python interpolation spline cubic
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
Using scipy.interpolate.splrep function

I am trying to fit a cubic spline to a given set of points. My points are not ordered. I …

python numpy scipy interpolation spline
Three.JS Object following a spline path - rotation / tanget issues & constant speed issue

I think my issue is similar to: Orient object's rotation to a spline point tangent in THREE.JS but I …

math three.js curve spline
Find minimum distance from point to complicated curve

I have a complicated curve defined as a set of points in a table like so (the full table is …

python numpy scipy interpolation spline
Calculate a bezier spline to get from point to point

I have 2 points in X,Y + Rotation and I need to calculate a bezier spline (a collection of quadratic beziers) …

math graphics 2d bezier spline