I am trying to compute the finite divided differences of the following array using Newton's interpolating polynomial to determine y at x=8. The array is
x = 0 1 2 5.5 11 13 16 18
y= 0.5 3.134 5.9 9.9 10.2 9.35 7.2 6.2
The pseudo code that I have is at http://imgur.com/gallery/Lm2KXxA/new. Are there any available pseudocode, algorithms or libraries I could use to tell me the answer?
Also I believe this is how to do the program in matlab http://imgur.com/gallery/L9wJaEH/new. I just can't figure out how to do it in python.
forloops all over the place instead of vectorizing), but you could turn it into similarly terrible numpy code by just changing most of the()s to[]s (for indexing) and making the indices go from 0 ton-1instead of 1 ton. – Dougal Feb 12 at 1:40