Tagged Questions

2
votes
2answers
142 views

Implement Interpolation Polynomial Algorithm with Mathematica

I have to implement this algorithm in Mathematica: My problem is that I don't really understand the Mathematica syntax because there aren't a lot of useful examples out there. What I have done: (* ...
2
votes
1answer
151 views

Linear least-squares fit with constraint - any ideas?

I have a problem where I am fitting a high-order polynomial to (not very) noisy data using linear least squares. Currently I'm using polynomial orders around 15 - 25, which work surprisingly well: The ...
0
votes
2answers
850 views

Lagrange interpolation in Python

I want to interpolate a polynomial with the Lagrange method, but this code doesn't work: def interpolate(x_values, y_values): def _basis(j): p = [(x - x_values[m])/(x_values[j] - ...
0
votes
1answer
301 views

Color Interpolation

Okay, so I'm looking at a typical color chooser and it looks something like this: If we deal with only highly saturated colors, the blending pattern behaves like this: R 255 G 0 B 0 R 255 G 0 ...
-3
votes
0answers
40 views

how to do lagrange numerical interpolation on given GPS points?

on a given array which holds N points, when each points is defined with two values : time and speed, im looking for a source code example / explanation how to do a lagrane polynomial interpolation. ...