<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 create an n by 3 matrix based on three functions.</title>
    <link>http://www.mapleprimes.com/questions/143124-How-To-Create-An-N-By-3-Matrix-Based</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 22:18:23 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 22:18:23 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How to create an n by 3 matrix based on three functions.</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How to create an n by 3 matrix based on three functions.</title>
      <link>http://www.mapleprimes.com/questions/143124-How-To-Create-An-N-By-3-Matrix-Based</link>
    </image>
    <item>
      <title>Simple answer:</title>
      <link>http://www.mapleprimes.com/questions/143124-How-To-Create-An-N-By-3-Matrix-Based?ref=Feed:MaplePrimes:How to create an n by 3 matrix based on three functions.:Comments#answer143127</link>
      <itunes:summary>&lt;pre&gt;M := n -&amp;gt; Matrix( [seq( [f(i),g(i),h(i)], i=1..n )] ):&lt;br&gt;M(4);&lt;/pre&gt;</itunes:summary>
      <description>&lt;pre&gt;M := n -&amp;gt; Matrix( [seq( [f(i),g(i),h(i)], i=1..n )] ):&lt;br&gt;M(4);&lt;/pre&gt;</description>
      <guid>143127</guid>
      <pubDate>Wed, 06 Feb 2013 05:19:27 Z</pubDate>
      <itunes:author>Adri van der Meer</itunes:author>
      <author>Adri van der Meer</author>
    </item>
    <item>
      <title>Very easy! Thank you!</title>
      <link>http://www.mapleprimes.com/questions/143124-How-To-Create-An-N-By-3-Matrix-Based?ref=Feed:MaplePrimes:How to create an n by 3 matrix based on three functions.:Comments#comment143129</link>
      <itunes:summary>&lt;p&gt;Very easy! Thank you!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Very easy! Thank you!&lt;/p&gt;</description>
      <guid>143129</guid>
      <pubDate>Wed, 06 Feb 2013 05:51:38 Z</pubDate>
      <itunes:author>therocket</itunes:author>
      <author>therocket</author>
    </item>
    <item>
      <title>alternatives</title>
      <link>http://www.mapleprimes.com/questions/143124-How-To-Create-An-N-By-3-Matrix-Based?ref=Feed:MaplePrimes:How to create an n by 3 matrix based on three functions.:Comments#comment143143</link>
      <itunes:summary>&lt;p&gt;You can shorten that to&lt;/p&gt;
&lt;pre&gt;M := n -&amp;gt; Matrix( [seq( [f,g,h](i), i=1..n )] ):&lt;/pre&gt;
&lt;p&gt;For the really lazy typist, you can do&lt;/p&gt;
&lt;pre&gt;M := n -&amp;gt; Matrix([f,g,h]~([seq](1..n))):&lt;/pre&gt;
&lt;p&gt;Alternatively, you can use a Matrix initializer function&lt;/p&gt;
&lt;pre&gt;M := n -&amp;gt; Matrix(n,3,(i,j)-&amp;gt;[f,g,h][j](i));&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;You can shorten that to&lt;/p&gt;
&lt;pre&gt;M := n -&amp;gt; Matrix( [seq( [f,g,h](i), i=1..n )] ):&lt;/pre&gt;
&lt;p&gt;For the really lazy typist, you can do&lt;/p&gt;
&lt;pre&gt;M := n -&amp;gt; Matrix([f,g,h]~([seq](1..n))):&lt;/pre&gt;
&lt;p&gt;Alternatively, you can use a Matrix initializer function&lt;/p&gt;
&lt;pre&gt;M := n -&amp;gt; Matrix(n,3,(i,j)-&amp;gt;[f,g,h][j](i));&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</description>
      <guid>143143</guid>
      <pubDate>Wed, 06 Feb 2013 11:36:24 Z</pubDate>
      <itunes:author>Joe Riel</itunes:author>
      <author>Joe Riel</author>
    </item>
  </channel>
</rss>