<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Can someone help me debug?</title>
    <link>http://www.mapleprimes.com/questions/35646-Can-Someone-Help-Me-Debug</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 23:53:01 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 23:53:01 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Can someone help me debug?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Can someone help me debug?</title>
      <link>http://www.mapleprimes.com/questions/35646-Can-Someone-Help-Me-Debug</link>
    </image>
    <item>
      <title>use the debugger</title>
      <link>http://www.mapleprimes.com/questions/35646-Can-Someone-Help-Me-Debug?ref=Feed:MaplePrimes:Can someone help me debug?:Comments#answer44574</link>
      <itunes:summary>&lt;p&gt;Consider doing what I did when you first posted this.&amp;nbsp; That is, wrap your code into a Maple procedure, then use the Maple debugger to step through the code.&amp;nbsp; That is, do&lt;/p&gt;
&lt;pre&gt;
myproc := proc()
&amp;nbsp; (* all your code *)
end proc:
&lt;/pre&gt;
&lt;pre&gt;
stopat(myproc):
myproc();
&lt;/pre&gt;
&lt;p&gt;That will bring up the Maple debugger.&amp;nbsp; You can execute each line one at a time, using the &lt;b&gt;next&lt;/b&gt;, &lt;b&gt;into&lt;/b&gt;, &lt;b&gt;step&lt;/b&gt;, etc commands (read the ?debugger help page).&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Consider doing what I did when you first posted this.&amp;nbsp; That is, wrap your code into a Maple procedure, then use the Maple debugger to step through the code.&amp;nbsp; That is, do&lt;/p&gt;
&lt;pre&gt;
myproc := proc()
&amp;nbsp; (* all your code *)
end proc:
&lt;/pre&gt;
&lt;pre&gt;
stopat(myproc):
myproc();
&lt;/pre&gt;
&lt;p&gt;That will bring up the Maple debugger.&amp;nbsp; You can execute each line one at a time, using the &lt;b&gt;next&lt;/b&gt;, &lt;b&gt;into&lt;/b&gt;, &lt;b&gt;step&lt;/b&gt;, etc commands (read the ?debugger help page).&lt;/p&gt;</description>
      <guid>44574</guid>
      <pubDate>Wed, 24 Feb 2010 04:44:37 Z</pubDate>
      <itunes:author>Joe
 Riel
</itunes:author>
      <author>Joe
 Riel
</author>
    </item>
    <item>
      <title>Invalid matrix/vector product</title>
      <link>http://www.mapleprimes.com/questions/35646-Can-Someone-Help-Me-Debug?ref=Feed:MaplePrimes:Can someone help me debug?:Comments#answer44575</link>
      <itunes:summary>&lt;p&gt;Executing this in Maple 13, the first error I get is "invalid matrix/vector product", and the offending piece of code has a red dotted line around it.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.math.ubc.ca/~israel/scrnshot.jpg" alt="" width="425" height="51"&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="http://www.mapleprimes.com/viewfile/4193"&gt;&lt;img src="http://www.mapleprimes.com/scripts/image.php?image=http://www.mapleprimes.com/files/4541_scrnshot.jpg&amp;amp;width=300&amp;amp;height=300" alt=""&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Note the dot between - and tan.&amp;nbsp; That's what's causing the error.&lt;/p&gt;
&lt;p&gt;Another mistake I see is that you have int(eqw1, bX .. cX, numeric) rather than int(eqw1, x = bX .. cX, numeric).&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Executing this in Maple 13, the first error I get is "invalid matrix/vector product", and the offending piece of code has a red dotted line around it.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.math.ubc.ca/~israel/scrnshot.jpg" alt="" width="425" height="51"&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="http://www.mapleprimes.com/viewfile/4193"&gt;&lt;img src="http://www.mapleprimes.com/scripts/image.php?image=http://www.mapleprimes.com/files/4541_scrnshot.jpg&amp;amp;width=300&amp;amp;height=300" alt=""&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Note the dot between - and tan.&amp;nbsp; That's what's causing the error.&lt;/p&gt;
&lt;p&gt;Another mistake I see is that you have int(eqw1, bX .. cX, numeric) rather than int(eqw1, x = bX .. cX, numeric).&lt;/p&gt;</description>
      <guid>44575</guid>
      <pubDate>Wed, 24 Feb 2010 09:28:00 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>debug</title>
      <link>http://www.mapleprimes.com/questions/35646-Can-Someone-Help-Me-Debug?ref=Feed:MaplePrimes:Can someone help me debug?:Comments#answer44576</link>
      <itunes:summary>&lt;p&gt;joe riel, i wrote the code exactly as you said.. that didnt work&lt;/p&gt;
&lt;p&gt;I looked into the debugging help page but this seriously confused me. so i opted for copying and pasting line by line to another work sheet and running it after each line.&lt;/p&gt;
&lt;p&gt;i found that if my code looks like this&lt;/p&gt;
&lt;p&gt;&amp;gt;x := something&lt;/p&gt;
&lt;p&gt;&amp;gt; b:= something&lt;/p&gt;
&lt;p&gt;&amp;gt;c := x * b&lt;/p&gt;
&lt;p&gt;&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;gt; d := x * b&lt;/p&gt;
&lt;p&gt;maple finds the blank space on line&amp;nbsp; 4 as an invalid object&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;if there is an extra space in the code for example x(space) :=something&amp;nbsp; ... it is wrong&lt;/p&gt;
&lt;p&gt;x:=(space)something.. it is wrong&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I also found the errors pointed out by robert. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you for helping&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;joe riel, i wrote the code exactly as you said.. that didnt work&lt;/p&gt;
&lt;p&gt;I looked into the debugging help page but this seriously confused me. so i opted for copying and pasting line by line to another work sheet and running it after each line.&lt;/p&gt;
&lt;p&gt;i found that if my code looks like this&lt;/p&gt;
&lt;p&gt;&amp;gt;x := something&lt;/p&gt;
&lt;p&gt;&amp;gt; b:= something&lt;/p&gt;
&lt;p&gt;&amp;gt;c := x * b&lt;/p&gt;
&lt;p&gt;&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;gt; d := x * b&lt;/p&gt;
&lt;p&gt;maple finds the blank space on line&amp;nbsp; 4 as an invalid object&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;if there is an extra space in the code for example x(space) :=something&amp;nbsp; ... it is wrong&lt;/p&gt;
&lt;p&gt;x:=(space)something.. it is wrong&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I also found the errors pointed out by robert. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you for helping&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>44576</guid>
      <pubDate>Wed, 24 Feb 2010 21:50:07 Z</pubDate>
      <itunes:author>lovinash</itunes:author>
      <author>lovinash</author>
    </item>
  </channel>
</rss>