<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 convert a system of symbolic equations into matrix form ?</title>
    <link>http://www.mapleprimes.com/questions/127686-How-To-Convert-A-System-Of-Symbolic</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Sun, 14 Jun 2026 00:39:24 GMT</lastBuildDate>
    <pubDate>Sun, 14 Jun 2026 00:39:24 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How to convert a system of symbolic equations into matrix form ?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How to convert a system of symbolic equations into matrix form ?</title>
      <link>http://www.mapleprimes.com/questions/127686-How-To-Convert-A-System-Of-Symbolic</link>
    </image>
    <item>
      <title>?GenerateMatrix</title>
      <link>http://www.mapleprimes.com/questions/127686-How-To-Convert-A-System-Of-Symbolic?ref=Feed:MaplePrimes:How to convert a system of symbolic equations into matrix form ?:Comments#answer127687</link>
      <itunes:summary>&lt;p&gt;Remembered ther is a command in the LinearAlgebra package,&lt;br&gt;?LinearAlgebra[GenerateMatrix] may be what you are looking for&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Remembered ther is a command in the LinearAlgebra package,&lt;br&gt;?LinearAlgebra[GenerateMatrix] may be what you are looking for&lt;/p&gt;</description>
      <guid>127687</guid>
      <pubDate>Sun, 13 Nov 2011 02:26:17 Z</pubDate>
      <itunes:author>Axel Vogt</itunes:author>
      <author>Axel Vogt</author>
    </item>
    <item>
      <title>example</title>
      <link>http://www.mapleprimes.com/questions/127686-How-To-Convert-A-System-Of-Symbolic?ref=Feed:MaplePrimes:How to convert a system of symbolic equations into matrix form ?:Comments#comment127688</link>
      <itunes:summary>&lt;pre&gt;eq1 := (a+1)*x - b*y + c*z = j:
eq2 := 2*x  + (sqrt(d)+e)*y - f*z = k:
eq3 := (g-h*2+1)*x - i*y - 4*z = l:

A,B := LinearAlgebra:-GenerateMatrix([eq1,eq2,eq3],[x,y,z]);

                         [   a + 1         -b      c ]  [j]
                         [                           ]  [ ]
                         [              (1/2)        ]  [k]
                 A, B := [     2       d      + e  -f], [ ]
                         [                           ]  [l]
                         [g - 2 h + 1      -i      -4] 
    
A.Vector([x,y,z])=B;

                     [   (a + 1) x - b y + c z   ]   [j]
                     [                           ]   [ ]
                     [      / (1/2)    \         ]   [k]
                     [2 x + \d      + e/ y - f z ] = [ ]
                     [                           ]   [l]
                     [(g - 2 h + 1) x - i y - 4 z] 

A.Vector([x,y,z])=~B;

                      [   (a + 1) x - b y + c z = j   ]
                      [                               ]
                      [      / (1/2)    \             ]
                      [2 x + \d      + e/ y - f z = k ]
                      [                               ]
                      [(g - 2 h + 1) x - i y - 4 z = l]
     
LinearAlgebra:-GenerateEquations(A,[x,y,z],B):

map(print,%):

                           x a + x - b y + c z = j
                                (1/2)                
                       2 x + y d      + y e - f z = k
                       x g - 2 x h + x - i y - 4 z = l
&lt;/pre&gt;</itunes:summary>
      <description>&lt;pre&gt;eq1 := (a+1)*x - b*y + c*z = j:
eq2 := 2*x  + (sqrt(d)+e)*y - f*z = k:
eq3 := (g-h*2+1)*x - i*y - 4*z = l:

A,B := LinearAlgebra:-GenerateMatrix([eq1,eq2,eq3],[x,y,z]);

                         [   a + 1         -b      c ]  [j]
                         [                           ]  [ ]
                         [              (1/2)        ]  [k]
                 A, B := [     2       d      + e  -f], [ ]
                         [                           ]  [l]
                         [g - 2 h + 1      -i      -4] 
    
A.Vector([x,y,z])=B;

                     [   (a + 1) x - b y + c z   ]   [j]
                     [                           ]   [ ]
                     [      / (1/2)    \         ]   [k]
                     [2 x + \d      + e/ y - f z ] = [ ]
                     [                           ]   [l]
                     [(g - 2 h + 1) x - i y - 4 z] 

A.Vector([x,y,z])=~B;

                      [   (a + 1) x - b y + c z = j   ]
                      [                               ]
                      [      / (1/2)    \             ]
                      [2 x + \d      + e/ y - f z = k ]
                      [                               ]
                      [(g - 2 h + 1) x - i y - 4 z = l]
     
LinearAlgebra:-GenerateEquations(A,[x,y,z],B):

map(print,%):

                           x a + x - b y + c z = j
                                (1/2)                
                       2 x + y d      + y e - f z = k
                       x g - 2 x h + x - i y - 4 z = l
&lt;/pre&gt;</description>
      <guid>127688</guid>
      <pubDate>Sun, 13 Nov 2011 05:19:16 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
    <item>
      <title>Perfect! Thanks.</title>
      <link>http://www.mapleprimes.com/questions/127686-How-To-Convert-A-System-Of-Symbolic?ref=Feed:MaplePrimes:How to convert a system of symbolic equations into matrix form ?:Comments#comment127701</link>
      <itunes:summary>&lt;p&gt;Perfect ! Works like a charm.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Perfect ! Works like a charm.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;</description>
      <guid>127701</guid>
      <pubDate>Sun, 13 Nov 2011 18:31:39 Z</pubDate>
      <itunes:author>awehring</itunes:author>
      <author>awehring</author>
    </item>
  </channel>
</rss>