Tagged Questions
2
votes
2answers
131 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
128 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
816 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
287 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 ...