<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, spline</title>
    <link>http://www.mapleprimes.com/questions/43142-Spline</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 08:13:28 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 08:13:28 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, spline</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, spline</title>
      <link>http://www.mapleprimes.com/questions/43142-Spline</link>
    </image>
    <item>
      <title>spline fit</title>
      <link>http://www.mapleprimes.com/questions/43142-Spline?ref=Feed:MaplePrimes:spline:Comments#answer80144</link>
      <itunes:summary>Good morning, mjj. I have a work sheet that will do this. Every time I try to type it into this comment block, when I look at the Preview, what I see is not what I typed. So, I give up.

Send me an email and I will email you the little program.

Jim Herod
jherod@tds.net

</itunes:summary>
      <description>Good morning, mjj. I have a work sheet that will do this. Every time I try to type it into this comment block, when I look at the Preview, what I see is not what I typed. So, I give up.

Send me an email and I will email you the little program.

Jim Herod
jherod@tds.net

</description>
      <guid>80144</guid>
      <pubDate>Sat, 25 Feb 2006 19:41:15 Z</pubDate>
      <itunes:author>jherod</itunes:author>
      <author>jherod</author>
    </item>
    <item>
      <title>Data points on same graph - example</title>
      <link>http://www.mapleprimes.com/questions/43142-Spline?ref=Feed:MaplePrimes:spline:Comments#answer80140</link>
      <itunes:summary>Try this as an example:

&gt; restart:with(stats):with(statplots):with(plots):
&gt; Data := [[1, 1], [2, 4], [3, 9], [4, 16], [5, 25], [6, 36], [7, 49], [8, 64], [9, 81], [10, 100]];
&gt; X:=[seq(Data[i,1],i=1..nops(Data))];
&gt; Y:=[seq(Data[i,2],i=1..nops(Data))];
&gt; da_fit:=fit[leastsquare[[x,y],y=a*x^2+b*x+c]]([X,Y]);
&gt; ptplt:=scatterplot(X,Y,symbolsize=20,color=green):
&gt; crvplt:=plot(rhs(da_fit),x=0..10):
&gt; display({crvplt,ptplt});
&gt; int(x^2,x=0..10);

Regards,
Georgios Kokovidis
Dräger Medical</itunes:summary>
      <description>Try this as an example:

&gt; restart:with(stats):with(statplots):with(plots):
&gt; Data := [[1, 1], [2, 4], [3, 9], [4, 16], [5, 25], [6, 36], [7, 49], [8, 64], [9, 81], [10, 100]];
&gt; X:=[seq(Data[i,1],i=1..nops(Data))];
&gt; Y:=[seq(Data[i,2],i=1..nops(Data))];
&gt; da_fit:=fit[leastsquare[[x,y],y=a*x^2+b*x+c]]([X,Y]);
&gt; ptplt:=scatterplot(X,Y,symbolsize=20,color=green):
&gt; crvplt:=plot(rhs(da_fit),x=0..10):
&gt; display({crvplt,ptplt});
&gt; int(x^2,x=0..10);

Regards,
Georgios Kokovidis
Dräger Medical</description>
      <guid>80140</guid>
      <pubDate>Sun, 26 Feb 2006 00:24:12 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
    <item>
      <title>Use pointplot and display (Maple 10)</title>
      <link>http://www.mapleprimes.com/questions/43142-Spline?ref=Feed:MaplePrimes:spline:Comments#answer80137</link>
      <itunes:summary>&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; restart:&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; with(CurveFitting):&amp;nbsp;&amp;nbsp;with(plots):&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; xydata := [[0,0],[1,1],[2,4],[3,3]];&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;center &gt;&lt;img src="http://maplenet.maplesoft.com/maplenet/primes/8cbb0e38bbc06331ba4ef9c91dfccfaf.gif" alt='Maple Equation' align='absMiddle' /&gt;&lt;/center&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; f := Spline(xydata, x);&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;center &gt;&lt;img src="http://maplenet.maplesoft.com/maplenet/primes/ede33ff1cf449e779e6d17aed8b784ec.gif" alt='Maple Equation' align='absMiddle' /&gt;&lt;/center&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; p1 := pointplot(xydata, color=blue, symbolsize=15):&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; p2 := plot(f, x=-5..5, y=-5..5):&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; display([p1,p2]);&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;center &gt;&lt;img src="http://maplenet.maplesoft.com/maplenet/primes/2c42da7d8989623fe6c98659819e32b0.gif" alt='Maple Plot' /&gt;&lt;/center&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; &lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This post generated using the online &lt;a href="http://beta.mapleprimes.com/mwconvert"&gt;HTML conversion tool&lt;br&gt;&lt;/a&gt; 
				&lt;a href="http://beta.mapleprimes.com/files/worksheets/162_Sp.mw"&gt;Download the original worksheet&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; restart:&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; with(CurveFitting):&amp;nbsp;&amp;nbsp;with(plots):&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; xydata := [[0,0],[1,1],[2,4],[3,3]];&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;center &gt;&lt;img src="http://maplenet.maplesoft.com/maplenet/primes/8cbb0e38bbc06331ba4ef9c91dfccfaf.gif" alt='Maple Equation' align='absMiddle' /&gt;&lt;/center&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; f := Spline(xydata, x);&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;center &gt;&lt;img src="http://maplenet.maplesoft.com/maplenet/primes/ede33ff1cf449e779e6d17aed8b784ec.gif" alt='Maple Equation' align='absMiddle' /&gt;&lt;/center&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; p1 := pointplot(xydata, color=blue, symbolsize=15):&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; p2 := plot(f, x=-5..5, y=-5..5):&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; display([p1,p2]);&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p &gt;&lt;center &gt;&lt;img src="http://maplenet.maplesoft.com/maplenet/primes/2c42da7d8989623fe6c98659819e32b0.gif" alt='Maple Plot' /&gt;&lt;/center&gt;&lt;/p&gt;
&lt;p &gt;&lt;strong &gt;&lt;font color="#ff0000" face="Monospaced"&gt;&gt; &lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This post generated using the online &lt;a href="http://beta.mapleprimes.com/mwconvert"&gt;HTML conversion tool&lt;br&gt;&lt;/a&gt; 
				&lt;a href="http://beta.mapleprimes.com/files/worksheets/162_Sp.mw"&gt;Download the original worksheet&lt;/a&gt;&lt;/p&gt;</description>
      <guid>80137</guid>
      <pubDate>Mon, 27 Feb 2006 01:07:04 Z</pubDate>
      <itunes:author>Thomas Madden</itunes:author>
      <author>Thomas Madden</author>
    </item>
  </channel>
</rss>