<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, plot procedure with multiple outputs</title>
    <link>http://www.mapleprimes.com/questions/41641-Plot-Procedure-With-Multiple-Outputs</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:58:33 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 20:58:33 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, plot procedure with multiple outputs</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, plot procedure with multiple outputs</title>
      <link>http://www.mapleprimes.com/questions/41641-Plot-Procedure-With-Multiple-Outputs</link>
    </image>
    <item>
      <title>Possible workaround</title>
      <link>http://www.mapleprimes.com/questions/41641-Plot-Procedure-With-Multiple-Outputs?ref=Feed:MaplePrimes:plot procedure with multiple outputs:Comments#answer77707</link>
      <itunes:summary>I am not sure what is happening, I will leave the explanation to someone else but the following code will allow you to get past this problem so that you can finish whatever you are working on.

solset2 := proc (k) 
local eqn1, x; 
eqn1 := x^2+k = 3; 
fsolve(eqn1, x) 
end proc:

points := [seq(eval('[solset2(z)]', z = i), i = -1 .. 1, 0.0005)]:
plots[pointplot](points);


Scott</itunes:summary>
      <description>I am not sure what is happening, I will leave the explanation to someone else but the following code will allow you to get past this problem so that you can finish whatever you are working on.

solset2 := proc (k) 
local eqn1, x; 
eqn1 := x^2+k = 3; 
fsolve(eqn1, x) 
end proc:

points := [seq(eval('[solset2(z)]', z = i), i = -1 .. 1, 0.0005)]:
plots[pointplot](points);


Scott</description>
      <guid>77707</guid>
      <pubDate>Fri, 23 Mar 2007 21:16:38 Z</pubDate>
      <itunes:author>Scott03</itunes:author>
      <author>Scott03</author>
    </item>
    <item>
      <title>Try solve rather than fsolve</title>
      <link>http://www.mapleprimes.com/questions/41641-Plot-Procedure-With-Multiple-Outputs?ref=Feed:MaplePrimes:plot procedure with multiple outputs:Comments#answer77699</link>
      <itunes:summary>The fsolve command numerically solves for the variable. Since eqn1 has two variables, executing
 solset2(z)
returns the statement, "Error, (in fsolve) z is in the equation, and is not solved for." On this example, you could replace fsolve with solve and, in the plot statement, get rid of the quote marks.</itunes:summary>
      <description>The fsolve command numerically solves for the variable. Since eqn1 has two variables, executing
 solset2(z)
returns the statement, "Error, (in fsolve) z is in the equation, and is not solved for." On this example, you could replace fsolve with solve and, in the plot statement, get rid of the quote marks.</description>
      <guid>77699</guid>
      <pubDate>Sun, 25 Mar 2007 04:44:24 Z</pubDate>
      <itunes:author>Edward
 Rozema
</itunes:author>
      <author>Edward
 Rozema
</author>
    </item>
  </channel>
</rss>