<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, ArrayInterpolation can be calculated, but not integrated</title>
    <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 16 Jun 2026 08:24:09 GMT</lastBuildDate>
    <pubDate>Tue, 16 Jun 2026 08:24:09 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, ArrayInterpolation can be calculated, but not integrated</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, ArrayInterpolation can be calculated, but not integrated</title>
      <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated</link>
    </image>
    <item>
      <title>evalf/int and curry</title>
      <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated?ref=Feed:MaplePrimes:ArrayInterpolation can be calculated, but not integrated:Comments#answer69490</link>
      <itunes:summary>&lt;p&gt;I would probably try:&lt;/p&gt;
&lt;p&gt;`evalf/int`(curry(T,3.3),0..1);&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I would probably try:&lt;/p&gt;
&lt;p&gt;`evalf/int`(curry(T,3.3),0..1);&lt;/p&gt;</description>
      <guid>69490</guid>
      <pubDate>Thu, 09 Oct 2008 17:12:21 Z</pubDate>
      <itunes:author>momiji</itunes:author>
      <author>momiji</author>
    </item>
    <item>
      <title>I also used instead of curry</title>
      <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated?ref=Feed:MaplePrimes:ArrayInterpolation can be calculated, but not integrated:Comments#answer69489</link>
      <itunes:summary>I also used instead of curry Q:=x-&gt;T(x,3.3):
but in any case it does not work.

It can not access T as a normal function, only calculation in a point is avalible.</itunes:summary>
      <description>I also used instead of curry Q:=x-&gt;T(x,3.3):
but in any case it does not work.

It can not access T as a normal function, only calculation in a point is avalible.</description>
      <guid>69489</guid>
      <pubDate>Thu, 09 Oct 2008 17:27:40 Z</pubDate>
      <itunes:author>lastcomm</itunes:author>
      <author>lastcomm</author>
    </item>
    <item>
      <title>more info</title>
      <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated?ref=Feed:MaplePrimes:ArrayInterpolation can be calculated, but not integrated:Comments#answer69482</link>
      <itunes:summary>&lt;p&gt;Please tell us what `Ranges` and `Img` are.&lt;/p&gt;
&lt;p&gt;I am imagining that an efficient in-place solution using the container=V option may be possible. But it'd help to see the structure of Ranges and Img.&lt;/p&gt;
&lt;p&gt;acer&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Please tell us what `Ranges` and `Img` are.&lt;/p&gt;
&lt;p&gt;I am imagining that an efficient in-place solution using the container=V option may be possible. But it'd help to see the structure of Ranges and Img.&lt;/p&gt;
&lt;p&gt;acer&lt;/p&gt;</description>
      <guid>69482</guid>
      <pubDate>Thu, 09 Oct 2008 20:04:34 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
    <item>
      <title>&gt; restart;
&gt;</title>
      <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated?ref=Feed:MaplePrimes:ArrayInterpolation can be calculated, but not integrated:Comments#answer69475</link>
      <itunes:summary>&gt; restart;
&gt; with(CurveFitting):
&gt; with(LinearAlgebra):with(plots):
&gt; Ranges := [[seq(1..5)],[seq(1..5)]]:
&gt; Img := [[1,3,2,0,0],[1,2,1,3,3],[3,4,2,1,2],[0,1,2,2,0],[2,3,6,1,0]]:
&gt; T:=(x,y)-&gt;ArrayInterpolation(Ranges,Img,[[x],[y]],method=spline)[1][1]:
&gt; plot3d(T,1..5,1..5,shading=z,grid=[25,25]);
&gt; Q:=x-&gt;T(x,2.4): 
&gt; plot(Q,1..5);
&gt; T(2.3,4);

                         2.59687499999517968

&gt; Q(3);

                         3.40228571428511728

So it can plot T and Q or eval them in points, but I can not use Q in a numerically solved differential equation or numerically integrate it.</itunes:summary>
      <description>&gt; restart;
&gt; with(CurveFitting):
&gt; with(LinearAlgebra):with(plots):
&gt; Ranges := [[seq(1..5)],[seq(1..5)]]:
&gt; Img := [[1,3,2,0,0],[1,2,1,3,3],[3,4,2,1,2],[0,1,2,2,0],[2,3,6,1,0]]:
&gt; T:=(x,y)-&gt;ArrayInterpolation(Ranges,Img,[[x],[y]],method=spline)[1][1]:
&gt; plot3d(T,1..5,1..5,shading=z,grid=[25,25]);
&gt; Q:=x-&gt;T(x,2.4): 
&gt; plot(Q,1..5);
&gt; T(2.3,4);

                         2.59687499999517968

&gt; Q(3);

                         3.40228571428511728

So it can plot T and Q or eval them in points, but I can not use Q in a numerically solved differential equation or numerically integrate it.</description>
      <guid>69475</guid>
      <pubDate>Thu, 09 Oct 2008 22:32:12 Z</pubDate>
      <itunes:author>lastcomm</itunes:author>
      <author>lastcomm</author>
    </item>
    <item>
      <title>evalf/Int</title>
      <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated?ref=Feed:MaplePrimes:ArrayInterpolation can be calculated, but not integrated:Comments#answer69474</link>
      <itunes:summary>&lt;p&gt;I believe your example will work if you use evalf(Int(Q, 0..1)).&amp;nbsp; You can look at the evalf/Int (Numerical Integration) help page for more examples.&lt;/p&gt;
&lt;p&gt;Paulina Chin&lt;br /&gt;
Maplesoft&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I believe your example will work if you use evalf(Int(Q, 0..1)).&amp;nbsp; You can look at the evalf/Int (Numerical Integration) help page for more examples.&lt;/p&gt;
&lt;p&gt;Paulina Chin&lt;br /&gt;
Maplesoft&lt;/p&gt;</description>
      <guid>69474</guid>
      <pubDate>Thu, 09 Oct 2008 22:59:47 Z</pubDate>
      <itunes:author>pchin</itunes:author>
      <author>pchin</author>
    </item>
    <item>
      <title>evalf(Int(Q, 0..1)) really</title>
      <link>http://www.mapleprimes.com/questions/38579-ArrayInterpolation-Can-Be-Calculated?ref=Feed:MaplePrimes:ArrayInterpolation can be calculated, but not integrated:Comments#answer69473</link>
      <itunes:summary>evalf(Int(Q, 0..1)) really works! Thanks.

Now I need to solve differential equation: diff(diff(x(t),t),t)=T(x(t),diff(x(t),t)).</itunes:summary>
      <description>evalf(Int(Q, 0..1)) really works! Thanks.

Now I need to solve differential equation: diff(diff(x(t),t),t)=T(x(t),diff(x(t),t)).</description>
      <guid>69473</guid>
      <pubDate>Thu, 09 Oct 2008 23:17:31 Z</pubDate>
      <itunes:author>lastcomm</itunes:author>
      <author>lastcomm</author>
    </item>
  </channel>
</rss>