<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, How to composite vector functions?</title>
    <link>http://www.mapleprimes.com/questions/141676-How-To-Composite-Vector-Functions</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 18:59:20 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 18:59:20 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How to composite vector functions?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How to composite vector functions?</title>
      <link>http://www.mapleprimes.com/questions/141676-How-To-Composite-Vector-Functions</link>
    </image>
    <item>
      <title>expression sequence, or Vector</title>
      <link>http://www.mapleprimes.com/questions/141676-How-To-Composite-Vector-Functions?ref=Feed:MaplePrimes:How to composite vector functions?:Comments#answer141680</link>
      <itunes:summary>&lt;pre&gt;restart:
f := (x,y) -&amp;gt; x*y+x^2+1:  # this expects two arguments
g := t -&amp;gt; (2*t, 3*t):     # this returns an expression sequence

(f@g)(x);
                               2    
                           10 x  + 1

unapply( (f@g)(x), x );

                                 2    
                        x -&amp;gt; 10 x  + 1


restart:
f := (V::Vector) -&amp;gt; V[1]*V[2]+V[1]^2+1:   # this expects a Vector
g := t -&amp;gt; &amp;lt;2*t, 3*t&amp;gt;:                     # this returns a Vector

(f@g)(x);
                               2    
                           10 x  + 1

unapply( (f@g)(x), x );

                                2    
                       x -&amp;gt; 10 x  + 1
&lt;/pre&gt;
&lt;!--break--&gt;
&lt;p&gt;acer&lt;/p&gt;</itunes:summary>
      <description>&lt;pre&gt;restart:
f := (x,y) -&amp;gt; x*y+x^2+1:  # this expects two arguments
g := t -&amp;gt; (2*t, 3*t):     # this returns an expression sequence

(f@g)(x);
                               2    
                           10 x  + 1

unapply( (f@g)(x), x );

                                 2    
                        x -&amp;gt; 10 x  + 1


restart:
f := (V::Vector) -&amp;gt; V[1]*V[2]+V[1]^2+1:   # this expects a Vector
g := t -&amp;gt; &amp;lt;2*t, 3*t&amp;gt;:                     # this returns a Vector

(f@g)(x);
                               2    
                           10 x  + 1

unapply( (f@g)(x), x );

                                2    
                       x -&amp;gt; 10 x  + 1
&lt;/pre&gt;
&lt;!--break--&gt;
&lt;p&gt;acer&lt;/p&gt;</description>
      <guid>141680</guid>
      <pubDate>Fri, 21 Dec 2012 13:59:17 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
    <item>
      <title>expression sequence</title>
      <link>http://www.mapleprimes.com/questions/141676-How-To-Composite-Vector-Functions?ref=Feed:MaplePrimes:How to composite vector functions?:Comments#comment141686</link>
      <itunes:summary>&lt;p&gt;Thanks. For my purposes I prefer the first version.&lt;/p&gt;
&lt;p&gt;Sandor&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks. For my purposes I prefer the first version.&lt;/p&gt;
&lt;p&gt;Sandor&lt;/p&gt;</description>
      <guid>141686</guid>
      <pubDate>Fri, 21 Dec 2012 19:02:28 Z</pubDate>
      <itunes:author>SandorSzabo</itunes:author>
      <author>SandorSzabo</author>
    </item>
  </channel>
</rss>