<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Newton's interpolation formula' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Newton's interpolation formula' posted on the 'Matlab' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2012 Programmers Heaven</copyright>
    <pubDate>Thu, 09 Feb 2012 10:21:12 -0800</pubDate>
    <lastBuildDate>Thu, 09 Feb 2012 10:21:12 -0800</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Newton's interpolation formula</title>
      <link>http://www.programmersheaven.com/mb/ctocplusplustomatlab/410340/410340/newtons-interpolation-formula/</link>
      <description>Hello,&lt;br /&gt;
could someone help me with my exam? This is it: Using Newton's interpolation formula plot a graph of the polynomial interpolation maximum level at a specified interval you specify points, while the input data containing the coordinates. This is exam in Matlab, i can what this program have to do, but I can't programming it :( Please, is there someone who can help me? I sitting on this whole week but i can't  solve it.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ctocplusplustomatlab/410340/410340/newtons-interpolation-formula/</guid>
      <pubDate>Fri, 04 Dec 2009 15:23:30 -0800</pubDate>
      <category>Matlab</category>
    </item>
    <item>
      <title>Re: Newton's interpolation formula</title>
      <link>http://www.programmersheaven.com/mb/ctocplusplustomatlab/410340/410368/re-newtons-interpolation-formula/#410368</link>
      <description>I have a source code for newton's interpolation formula, but I can't make a graph&lt;br /&gt;
&lt;br /&gt;
function fp = newton_interpolation(x,y,p)&lt;br /&gt;
n = length(x);&lt;br /&gt;
a(1) = y(1);&lt;br /&gt;
for k = 1 : n - 1&lt;br /&gt;
d(k, 1) = (y(k+1) - y(k))/(x(k+1) - x(k));&lt;br /&gt;
end&lt;br /&gt;
for j = 2 : n - 1&lt;br /&gt;
for k = 1 : n - j&lt;br /&gt;
d(k, j) = (d(k+1, j - 1) - d(k, j - 1))/(x(k+j) - x(k));&lt;br /&gt;
end&lt;br /&gt;
end&lt;br /&gt;
d&lt;br /&gt;
for j = 2 : n&lt;br /&gt;
a(j) = d(1, j-1);&lt;br /&gt;
end&lt;br /&gt;
Df(1) = 1;&lt;br /&gt;
c(1) = a(1);&lt;br /&gt;
for j = 2 : n&lt;br /&gt;
Df(j)=(p - x(j-1)) .* Df(j-1);&lt;br /&gt;
c(j) = a(j) .* Df(j);&lt;br /&gt;
end&lt;br /&gt;
fp=sum(c);&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ctocplusplustomatlab/410340/410368/re-newtons-interpolation-formula/#410368</guid>
      <pubDate>Sat, 05 Dec 2009 08:11:58 -0800</pubDate>
      <category>Matlab</category>
    </item>
  </channel>
</rss>
