<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, How do I populate a matrix of matrices in Maple?</title>
    <link>http://www.mapleprimes.com/questions/97634-How-Do-I-Populate-A-Matrix-Of-Matrices-In-Maple</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 16:16:26 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 16:16:26 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How do I populate a matrix of matrices in Maple?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How do I populate a matrix of matrices in Maple?</title>
      <link>http://www.mapleprimes.com/questions/97634-How-Do-I-Populate-A-Matrix-Of-Matrices-In-Maple</link>
    </image>
    <item>
      <title>monoid</title>
      <link>http://www.mapleprimes.com/questions/97634-How-Do-I-Populate-A-Matrix-Of-Matrices-In-Maple?ref=Feed:MaplePrimes:How do I populate a matrix of matrices in Maple?:Comments#answer97639</link>
      <itunes:summary>&lt;p&gt;Assuming some of those products really are nonzero (and you're using Multiply in the LinearAlgebra package rather than "multiply"), that ought to work.&amp;nbsp; Maybe if you uploaded your worksheet we could spot the problem.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Assuming some of those products really are nonzero (and you're using Multiply in the LinearAlgebra package rather than "multiply"), that ought to work.&amp;nbsp; Maybe if you uploaded your worksheet we could spot the problem.&lt;/p&gt;</description>
      <guid>97639</guid>
      <pubDate>Fri, 08 Oct 2010 23:26:45 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>syntax</title>
      <link>http://www.mapleprimes.com/questions/97634-How-Do-I-Populate-A-Matrix-Of-Matrices-In-Maple?ref=Feed:MaplePrimes:How do I populate a matrix of matrices in Maple?:Comments#answer97641</link>
      <itunes:summary>&lt;p&gt;Change&lt;/p&gt;
&lt;pre&gt;T[i,j]:= Matrix(7)&lt;/pre&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;pre&gt;T:= Matrix(7)&lt;/pre&gt;
&lt;p&gt;Notice also that you are not suppressing printing of output when you create the empty (all-zero) initial T with the Matrix() call. That's why an all-zero Matrix gets printed by part of your issued commands. But your double do-loop won't get its actions displayed, under default printlevel. So just call&lt;/p&gt;
&lt;pre&gt;T;&lt;/pre&gt;
&lt;p&gt;after your loop, to see how it worked.&lt;/p&gt;
&lt;p&gt;For what it's worth, you could also do it this way&lt;/p&gt;
&lt;pre&gt;T := Matrix( 7, (i,j)-&amp;gt;multiply(monoid[i],monoid[j]) );&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Change&lt;/p&gt;
&lt;pre&gt;T[i,j]:= Matrix(7)&lt;/pre&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;pre&gt;T:= Matrix(7)&lt;/pre&gt;
&lt;p&gt;Notice also that you are not suppressing printing of output when you create the empty (all-zero) initial T with the Matrix() call. That's why an all-zero Matrix gets printed by part of your issued commands. But your double do-loop won't get its actions displayed, under default printlevel. So just call&lt;/p&gt;
&lt;pre&gt;T;&lt;/pre&gt;
&lt;p&gt;after your loop, to see how it worked.&lt;/p&gt;
&lt;p&gt;For what it's worth, you could also do it this way&lt;/p&gt;
&lt;pre&gt;T := Matrix( 7, (i,j)-&amp;gt;multiply(monoid[i],monoid[j]) );&lt;/pre&gt;</description>
      <guid>97641</guid>
      <pubDate>Fri, 08 Oct 2010 23:45:52 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
  </channel>
</rss>