<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Plotting Function</title>
    <link>http://www.mapleprimes.com/questions/144749-Plotting-Function</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 11:13:57 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 11:13:57 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Plotting Function</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Plotting Function</title>
      <link>http://www.mapleprimes.com/questions/144749-Plotting-Function</link>
    </image>
    <item>
      <title>Need to deal with the constants of integration</title>
      <link>http://www.mapleprimes.com/questions/144749-Plotting-Function?ref=Feed:MaplePrimes:Plotting Function:Comments#answer144750</link>
      <itunes:summary>&lt;p&gt;Before you can plot it, you need to deal with the six constants of integration _C1, ..., _C6. Can you find six initial or boundary conditions?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Before you can plot it, you need to deal with the six constants of integration _C1, ..., _C6. Can you find six initial or boundary conditions?&lt;/p&gt;</description>
      <guid>144750</guid>
      <pubDate>Mon, 18 Mar 2013 21:21:27 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>eval(x(t), ...)</title>
      <link>http://www.mapleprimes.com/questions/144749-Plotting-Function?ref=Feed:MaplePrimes:Plotting Function:Comments#answer145273</link>
      <itunes:summary>&lt;p&gt;Assign the solution given by &lt;strong&gt;dsolve&lt;/strong&gt; to a variable:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;strong&gt;soln:= dsolve(..., x(t));&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;where you have to substitute your actual &lt;strong&gt;dsolve&lt;/strong&gt; command. Then, to plot it, do&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;strong&gt;plot(eval(x(t), soln), t= 0..10);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If this doesn't work for you, please post or upload your code!&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Assign the solution given by &lt;strong&gt;dsolve&lt;/strong&gt; to a variable:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;strong&gt;soln:= dsolve(..., x(t));&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;where you have to substitute your actual &lt;strong&gt;dsolve&lt;/strong&gt; command. Then, to plot it, do&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;strong&gt;plot(eval(x(t), soln), t= 0..10);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If this doesn't work for you, please post or upload your code!&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <guid>145273</guid>
      <pubDate>Sat, 30 Mar 2013 04:09:13 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>how to determine the constants of integration</title>
      <link>http://www.mapleprimes.com/questions/144749-Plotting-Function?ref=Feed:MaplePrimes:Plotting Function:Comments#comment144796</link>
      <itunes:summary>&lt;p&gt;Ah I see.&lt;/p&gt;
&lt;p&gt;How would one determine these?&lt;/p&gt;
&lt;p&gt;Cause I use maple to assist with this?&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Ah I see.&lt;/p&gt;
&lt;p&gt;How would one determine these?&lt;/p&gt;
&lt;p&gt;Cause I use maple to assist with this?&amp;nbsp;&lt;/p&gt;</description>
      <guid>144796</guid>
      <pubDate>Tue, 19 Mar 2013 14:05:45 Z</pubDate>
      <itunes:author>shorty101</itunes:author>
      <author>shorty101</author>
    </item>
    <item>
      <title>Initial conditions</title>
      <link>http://www.mapleprimes.com/questions/144749-Plotting-Function?ref=Feed:MaplePrimes:Plotting Function:Comments#comment144799</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144749-Plotting-Function#comment144796"&gt;@shorty101&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;gt; How would one determine these?&lt;/p&gt;
&lt;p&gt;There has to be some context in the original problem for them. For example, if a problem says "A gun is fired straight up from a height of 10 m with an initial velocity of 500 m/s. What is the height &lt;em&gt;H(t)&lt;/em&gt; of the projectile at time &lt;em&gt;t&lt;/em&gt;?" then the initial conditions are &lt;em&gt;H(&lt;/em&gt;0&lt;em&gt;) &lt;/em&gt;= 10 and &lt;em&gt;H'(0) &lt;/em&gt;= 500.&lt;/p&gt;
&lt;p&gt;&amp;gt; Cause I use maple to assist with this?&lt;/p&gt;
&lt;p&gt;Once you determine the initial conditions, Maple can help with solving for the constants.&lt;/p&gt;
&lt;p&gt;You should post the entire original problem and your call to &lt;strong&gt;dsolve&lt;/strong&gt;. It's hard to believe that you are dealing with Mathieu functions with three parameters and six constants of integration and yet you had to ask those two questions. So my guess is that you've entered the problem incorrectly into &lt;strong&gt;dsolve&lt;/strong&gt;.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144749-Plotting-Function#comment144796"&gt;@shorty101&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;gt; How would one determine these?&lt;/p&gt;
&lt;p&gt;There has to be some context in the original problem for them. For example, if a problem says "A gun is fired straight up from a height of 10 m with an initial velocity of 500 m/s. What is the height &lt;em&gt;H(t)&lt;/em&gt; of the projectile at time &lt;em&gt;t&lt;/em&gt;?" then the initial conditions are &lt;em&gt;H(&lt;/em&gt;0&lt;em&gt;) &lt;/em&gt;= 10 and &lt;em&gt;H'(0) &lt;/em&gt;= 500.&lt;/p&gt;
&lt;p&gt;&amp;gt; Cause I use maple to assist with this?&lt;/p&gt;
&lt;p&gt;Once you determine the initial conditions, Maple can help with solving for the constants.&lt;/p&gt;
&lt;p&gt;You should post the entire original problem and your call to &lt;strong&gt;dsolve&lt;/strong&gt;. It's hard to believe that you are dealing with Mathieu functions with three parameters and six constants of integration and yet you had to ask those two questions. So my guess is that you've entered the problem incorrectly into &lt;strong&gt;dsolve&lt;/strong&gt;.&lt;/p&gt;</description>
      <guid>144799</guid>
      <pubDate>Tue, 19 Mar 2013 18:26:29 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>@Carl Love&amp;nbsp;
&amp;nbsp;
You're right. entered</title>
      <link>http://www.mapleprimes.com/questions/144749-Plotting-Function?ref=Feed:MaplePrimes:Plotting Function:Comments#comment145204</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144749-Plotting-Function#comment144799"&gt;@Carl Love&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You're right. entered my equation worng. Thanks&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144749-Plotting-Function#comment144799"&gt;@Carl Love&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You're right. entered my equation worng. Thanks&lt;/p&gt;</description>
      <guid>145204</guid>
      <pubDate>Thu, 28 Mar 2013 14:33:18 Z</pubDate>
      <itunes:author>shorty101</itunes:author>
      <author>shorty101</author>
    </item>
    <item>
      <title>@Carl Love&amp;nbsp;Nevertheless,If we were</title>
      <link>http://www.mapleprimes.com/questions/144749-Plotting-Function?ref=Feed:MaplePrimes:Plotting Function:Comments#comment145205</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144749-Plotting-Function#comment144799"&gt;@Carl Love&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;Nevertheless,&lt;br&gt;&lt;br&gt;If we were to say that:&lt;br&gt;_C3 := 0.5;&lt;br&gt;_C4 := 0;&lt;br&gt;&lt;br&gt;b := 0.8;&lt;br&gt;g := 2000000;&lt;br&gt;e := 2.8;&lt;br&gt;&lt;br&gt;In the range of t from 0 to say 10. I am still unable to plot this function for x(t).&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;Any reason as to why this may be?&lt;br&gt;&lt;br&gt;&lt;br&gt;I do the call (after running dsolve and setting all the values for the variables):&lt;br&gt;plot(x(t), t = 0 .. 10)&lt;br&gt;&lt;br&gt;I just get:&lt;br&gt;Warning, unable to evaluate the function to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct&lt;br&gt;&lt;br&gt;With an empty graph displayed also.&lt;br&gt;&lt;br&gt;I would be sooo thankful for any help!!&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144749-Plotting-Function#comment144799"&gt;@Carl Love&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;Nevertheless,&lt;br&gt;&lt;br&gt;If we were to say that:&lt;br&gt;_C3 := 0.5;&lt;br&gt;_C4 := 0;&lt;br&gt;&lt;br&gt;b := 0.8;&lt;br&gt;g := 2000000;&lt;br&gt;e := 2.8;&lt;br&gt;&lt;br&gt;In the range of t from 0 to say 10. I am still unable to plot this function for x(t).&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;Any reason as to why this may be?&lt;br&gt;&lt;br&gt;&lt;br&gt;I do the call (after running dsolve and setting all the values for the variables):&lt;br&gt;plot(x(t), t = 0 .. 10)&lt;br&gt;&lt;br&gt;I just get:&lt;br&gt;Warning, unable to evaluate the function to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct&lt;br&gt;&lt;br&gt;With an empty graph displayed also.&lt;br&gt;&lt;br&gt;I would be sooo thankful for any help!!&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</description>
      <guid>145205</guid>
      <pubDate>Thu, 28 Mar 2013 15:09:45 Z</pubDate>
      <itunes:author>shorty101</itunes:author>
      <author>shorty101</author>
    </item>
  </channel>
</rss>