Hi,
Could you please ellaborate on your algorithem?
what is the math behinds it,
for example, what is this:
ftt = [0]+[3*(h[i+1]-h[i])/(w[i+1]+w[i]) for i in range(N-1)]+[0]
this is second derivative of f(x) ? if so, why multiply by 3 ?
why A,B,C,D is computed like that?
I read a lot of articles about the different algorithems, but they all use Matrix to solve system of equations.. while you did it very simple.
It would be awesome to attach a simple "Proof" of your solution.
Great work, thank you very much, Tomer.
Hi,
Could you please ellaborate on your algorithem?
what is the math behinds it,
for example, what is this:
ftt = [0]+[3*(h[i+1]-h[i])/(w[i+1]+w[i]) for i in range(N-1)]+[0]this is second derivative of f(x) ? if so, why multiply by 3 ?
why A,B,C,D is computed like that?
I read a lot of articles about the different algorithems, but they all use Matrix to solve system of equations.. while you did it very simple.
It would be awesome to attach a simple "Proof" of your solution.
Great work, thank you very much, Tomer.