<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Problems with DEplot</title>
    <link>http://www.mapleprimes.com/questions/142416-Problems-With-DEplot</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 20:38:09 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 20:38:09 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Problems with DEplot</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Problems with DEplot</title>
      <link>http://www.mapleprimes.com/questions/142416-Problems-With-DEplot</link>
    </image>
    <item>
      <title>Related to earlier question</title>
      <link>http://www.mapleprimes.com/questions/142416-Problems-With-DEplot?ref=Feed:MaplePrimes:Problems with DEplot:Comments#answer142421</link>
      <itunes:summary>&lt;p&gt;This seems to be related to&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/142322-Why-Has-The-Plot-Command-Deteriorated#comment142326"&gt;http://www.mapleprimes.com/questions/142322-Why-Has-The-Plot-Command-Deteriorated#comment142326&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And indeed, it is the same problem:&lt;/p&gt;
&lt;p&gt;restart;&lt;br&gt;eqn3:=diff(y(x),x)=x+sin(y(x));&lt;br&gt;IC3:=[y(0)=2];&lt;br&gt;DEtools[DEplot](eqn3,[y(x)],x=-5..5,IC3,y=-5..5,arrows=none,linecolor=BLACK);&lt;br&gt;plottools:-getdata(%);&lt;br&gt;M:=%[-1];&lt;br&gt;has(M,HFloat(undefined));&lt;br&gt;interface(rtablesize=infinity);&lt;br&gt;M;&lt;br&gt;M1:=M[9..-12,..];&lt;br&gt;plot(M1);&lt;/p&gt;
&lt;p&gt;I hope this won't have to wait for Maple 17!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Added: The following simple remedy works (at least in the present case):&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;restart;&lt;br&gt;eqn3:=diff(y(x),x)=x+sin(y(x));&lt;br&gt;IC3:=[y(0)=2,y(0)=3];&lt;br&gt;DEtools[DEplot](eqn3,y(x),x=-5..5,IC3,y=-5..5,linecolor=black); p:=%:&lt;br&gt;eval(p,[undefined,undefined]=NULL);&lt;/p&gt;
&lt;p&gt;#A more general version also works for the case in the link:&lt;/p&gt;
&lt;p&gt;evalindets(p,Or(Matrix,listlist),m-&amp;gt;remove(hastype,convert(m,listlist),undefined));&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;This seems to be related to&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/142322-Why-Has-The-Plot-Command-Deteriorated#comment142326"&gt;http://www.mapleprimes.com/questions/142322-Why-Has-The-Plot-Command-Deteriorated#comment142326&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And indeed, it is the same problem:&lt;/p&gt;
&lt;p&gt;restart;&lt;br&gt;eqn3:=diff(y(x),x)=x+sin(y(x));&lt;br&gt;IC3:=[y(0)=2];&lt;br&gt;DEtools[DEplot](eqn3,[y(x)],x=-5..5,IC3,y=-5..5,arrows=none,linecolor=BLACK);&lt;br&gt;plottools:-getdata(%);&lt;br&gt;M:=%[-1];&lt;br&gt;has(M,HFloat(undefined));&lt;br&gt;interface(rtablesize=infinity);&lt;br&gt;M;&lt;br&gt;M1:=M[9..-12,..];&lt;br&gt;plot(M1);&lt;/p&gt;
&lt;p&gt;I hope this won't have to wait for Maple 17!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Added: The following simple remedy works (at least in the present case):&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;restart;&lt;br&gt;eqn3:=diff(y(x),x)=x+sin(y(x));&lt;br&gt;IC3:=[y(0)=2,y(0)=3];&lt;br&gt;DEtools[DEplot](eqn3,y(x),x=-5..5,IC3,y=-5..5,linecolor=black); p:=%:&lt;br&gt;eval(p,[undefined,undefined]=NULL);&lt;/p&gt;
&lt;p&gt;#A more general version also works for the case in the link:&lt;/p&gt;
&lt;p&gt;evalindets(p,Or(Matrix,listlist),m-&amp;gt;remove(hastype,convert(m,listlist),undefined));&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>142421</guid>
      <pubDate>Sun, 20 Jan 2013 05:18:16 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>variable change works for 16.02</title>
      <link>http://www.mapleprimes.com/questions/142416-Problems-With-DEplot?ref=Feed:MaplePrimes:Problems with DEplot:Comments#answer142867</link>
      <itunes:summary>&lt;p&gt;Changing x to some other variable, say t, appears to work in 16.02&lt;/p&gt;
&lt;p&gt;with(DEtools):&lt;br&gt;eqn3 := diff(y(t), t) = t+sin(y(t));&lt;br&gt;IC3 := [y(0) = 2, y(3) = 0];&lt;br&gt;DEplot(eqn3, [y(t)], t = -5 .. 5, IC3, y = -5 .. 5, arrows = comet, linecolor = BLACK)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=142867/452722/deplottest.jpeg"&gt;&lt;img src="/view.aspx?sf=142867/452722/deplottest.jpeg" alt=""&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;**edit add **&lt;/p&gt;
&lt;p&gt;It is a range problem bug.&amp;nbsp; Changing your x range&amp;nbsp; x=-3..2 will remedy the problem and display the solution curves.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span class="mainBody document"&gt;eqn3:=diff(y(x),x)=x+sin(y(x));&lt;br&gt;IC3:=[y(0)=2,y(3)=0];&lt;br&gt;DEplot(eqn3,[y(x)],&lt;strong&gt;&amp;nbsp; x=-3..2 &amp;nbsp;&lt;/strong&gt;,IC3,y=-5..5,arrows=comet,linecolor=BLACK);&lt;/span&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Changing x to some other variable, say t, appears to work in 16.02&lt;/p&gt;
&lt;p&gt;with(DEtools):&lt;br&gt;eqn3 := diff(y(t), t) = t+sin(y(t));&lt;br&gt;IC3 := [y(0) = 2, y(3) = 0];&lt;br&gt;DEplot(eqn3, [y(t)], t = -5 .. 5, IC3, y = -5 .. 5, arrows = comet, linecolor = BLACK)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=142867/452722/deplottest.jpeg"&gt;&lt;img src="/view.aspx?sf=142867/452722/deplottest.jpeg" alt=""&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;**edit add **&lt;/p&gt;
&lt;p&gt;It is a range problem bug.&amp;nbsp; Changing your x range&amp;nbsp; x=-3..2 will remedy the problem and display the solution curves.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span class="mainBody document"&gt;eqn3:=diff(y(x),x)=x+sin(y(x));&lt;br&gt;IC3:=[y(0)=2,y(3)=0];&lt;br&gt;DEplot(eqn3,[y(x)],&lt;strong&gt;&amp;nbsp; x=-3..2 &amp;nbsp;&lt;/strong&gt;,IC3,y=-5..5,arrows=comet,linecolor=BLACK);&lt;/span&gt;&lt;/p&gt;</description>
      <guid>142867</guid>
      <pubDate>Thu, 31 Jan 2013 22:33:30 Z</pubDate>
      <itunes:author>Christopher2222</itunes:author>
      <author>Christopher2222</author>
    </item>
    <item>
      <title>Plot regression update</title>
      <link>http://www.mapleprimes.com/questions/142416-Problems-With-DEplot?ref=Feed:MaplePrimes:Problems with DEplot:Comments#answer143192</link>
      <itunes:summary>&lt;p&gt;The plotting regression bug may be fixed using the mathdoc.jar update posted here:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/143131-DEPlot-Error-When-Plotting-Solution-Curve?submit=143189#comment143189"&gt;http://www.mapleprimes.com/questions/143131-DEPlot-Error-When-Plotting-Solution-Curve?submit=143189#comment143189&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The plotting regression bug may be fixed using the mathdoc.jar update posted here:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/143131-DEPlot-Error-When-Plotting-Solution-Curve?submit=143189#comment143189"&gt;http://www.mapleprimes.com/questions/143131-DEPlot-Error-When-Plotting-Solution-Curve?submit=143189#comment143189&lt;/a&gt;&lt;/p&gt;</description>
      <guid>143192</guid>
      <pubDate>Thu, 07 Feb 2013 00:30:42 Z</pubDate>
      <itunes:author>cskoog</itunes:author>
      <author>cskoog</author>
    </item>
  </channel>
</rss>