Questions tagged [cubic-spline]

A cubic spline is a smooth 3-order polynomial function that is piecewise-defined, and possesses a high degree of smoothness at the knots where the polynomial pieces connect.

A cubic spline is a smooth 3-order polynomial function that is piecewise-defined, and possesses a high degree of smoothness at the knots where the polynomial pieces connect. The most common cubic splines are Hermite, B-splines and Bezier splines.

Further details can be found at the sites below:

  1. wikipedia
  2. mathematica
170 questions
-1
votes
1 answer

CubicSpilne Interpolation using Python

I have four columns of data (say x, y, z, and m). I need to interpolate values of x, y, and z for a given value of m, based upon data points in this file. This file contains a lot more data points. For instance, say at m = 9.0, I need to…
-1
votes
1 answer

Is it possible to Interpolate without loop

I was wondering if it was possible to interpolate without using loop in order to earn processing time. Note : Interpolation goal is to calculate point which does not exist on my curve. For Example the rate for 9 october 2021 Curve…
TourEiffel
  • 4,034
  • 2
  • 16
  • 45
-1
votes
1 answer

Python: Cubic Spline Regression for a time series data

I have the data as shown below. I want to find a CUBIC SPLINE curve that fits the entire data set (link to sample data). Things I've tried so far: I've gone through scipy's Cubic Spline Functions, but all of them are only able to give results at a…
Legolas
  • 653
  • 1
  • 9
  • 17
-1
votes
2 answers

Evaluating python's UnivariateSpline on complex data

I used scipy to interpolate some real data. I wished to evaluate fitted spline on some complex data, is there some trick to force scipy to do it? If not, are there some python packages that provide this functionality? import scipy.interpolate as…
artfin
  • 43
  • 1
  • 6
-3
votes
1 answer

Interpolation - can anyone explain it better?

vq3 = grid data interpolations with methods 'cubic' (matrix 21x21) vq = interpolated values (matrix 21x21) I don't understand what j,j is?
500 Server error
  • 644
  • 13
  • 28
1 2 3
11
12