<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Separating a curve into a dashed and a solid line at a specific point</title>
    <link>http://www.mapleprimes.com/questions/102147-Separating-A-Curve-Into-A-Dashed-And</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 17:24:50 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 17:24:50 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Separating a curve into a dashed and a solid line at a specific point</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Separating a curve into a dashed and a solid line at a specific point</title>
      <link>http://www.mapleprimes.com/questions/102147-Separating-A-Curve-Into-A-Dashed-And</link>
    </image>
    <item>
      <title>intersection</title>
      <link>http://www.mapleprimes.com/questions/102147-Separating-A-Curve-Into-A-Dashed-And?ref=Feed:MaplePrimes:Separating a curve into a dashed and a solid line at a specific point:Comments#answer102150</link>
      <itunes:summary>&lt;p&gt;Maybe the brute force way would do: find the x,y (err, Q1,Q2) values at the intersections. Then just draw eight curves instead of four. And have some of the eight get the dashed line style. See &lt;a href="http://www.maplesoft.com/support/help/search.aspx?term=plot,option"&gt;?plot,option&lt;/a&gt; on chenging the line style.&lt;/p&gt;
&lt;p&gt;Instead of creating all curves in a single plot structure right away, you could assign each to a name. Ie, P1:=plot3(....,Q1=-1..X, Q2=-1...1) where X is the Q1-coordinate of the intersection point. Analogously for the other curves, but some with the line style specified as an option. Then use plots:-display to show them all superimposed.&lt;/p&gt;
&lt;!--break--&gt;
&lt;p&gt;acer&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Maybe the brute force way would do: find the x,y (err, Q1,Q2) values at the intersections. Then just draw eight curves instead of four. And have some of the eight get the dashed line style. See &lt;a href="http://www.maplesoft.com/support/help/search.aspx?term=plot,option"&gt;?plot,option&lt;/a&gt; on chenging the line style.&lt;/p&gt;
&lt;p&gt;Instead of creating all curves in a single plot structure right away, you could assign each to a name. Ie, P1:=plot3(....,Q1=-1..X, Q2=-1...1) where X is the Q1-coordinate of the intersection point. Analogously for the other curves, but some with the line style specified as an option. Then use plots:-display to show them all superimposed.&lt;/p&gt;
&lt;!--break--&gt;
&lt;p&gt;acer&lt;/p&gt;</description>
      <guid>102150</guid>
      <pubDate>Wed, 02 Mar 2011 17:37:08 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
    <item>
      <title>Cheers!!!</title>
      <link>http://www.mapleprimes.com/questions/102147-Separating-A-Curve-Into-A-Dashed-And?ref=Feed:MaplePrimes:Separating a curve into a dashed and a solid line at a specific point:Comments#answer102154</link>
      <itunes:summary>&lt;p&gt;Cheers!!!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Cheers!!!&lt;/p&gt;</description>
      <guid>102154</guid>
      <pubDate>Wed, 02 Mar 2011 19:20:11 Z</pubDate>
      <itunes:author>rmjg20</itunes:author>
      <author>rmjg20</author>
    </item>
    <item>
      <title>spacecurve</title>
      <link>http://www.mapleprimes.com/questions/102147-Separating-A-Curve-Into-A-Dashed-And?ref=Feed:MaplePrimes:Separating a curve into a dashed and a solid line at a specific point:Comments#answer102161</link>
      <itunes:summary>&lt;p&gt;plot3d is for surfaces, not curves.&amp;nbsp; spacecurve in the plots package is for plotting curves in 3D.&amp;nbsp; You could try something like this:&lt;/p&gt;
&lt;pre&gt;&amp;gt; P1 := 1 + 2*Q1^2; P11:= 2 + Q1^2;&lt;br&gt;&amp;nbsp;&amp;nbsp; P2:= 3 + 4*Q2^2; P22:= 5 + 3*Q2^2;&lt;br&gt;&amp;nbsp;&amp;nbsp; with(plots):&lt;br&gt;&amp;nbsp;&amp;nbsp; solve(P1 = P11);&lt;br&gt;   m11, m12:= (min,max)(%);&lt;br&gt;&amp;nbsp;&amp;nbsp; solve(P2 = P22);&lt;br&gt;   m21, m22:= (min,max)(%);&lt;br&gt;   display([spacecurve([Q1, 0, P1], Q1 = -3 .. m11, colour=red, linestyle=dash), &lt;br&gt;                 spacecurve([Q1, 0, P1], Q1 = m11 .. m12, colour=red),&amp;nbsp;&amp;nbsp; &lt;br&gt;                 spacecurve([Q1, 0, P1], Q1 = m12 .. 3, colour=red, linestyle=dash),&lt;br&gt;                 spacecurve([0, Q2, P2], Q2 = -3 .. m21, colour=blue),&lt;br&gt;                 spacecurve([0, Q2, P2], Q2 = m21 .. m22, colour=blue, linestyle=dash),&lt;br&gt;                 spacecurve([0, Q2, P2], Q2 = m22 .. 3, colour=blue)]);&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;plot3d is for surfaces, not curves.&amp;nbsp; spacecurve in the plots package is for plotting curves in 3D.&amp;nbsp; You could try something like this:&lt;/p&gt;
&lt;pre&gt;&amp;gt; P1 := 1 + 2*Q1^2; P11:= 2 + Q1^2;&lt;br&gt;&amp;nbsp;&amp;nbsp; P2:= 3 + 4*Q2^2; P22:= 5 + 3*Q2^2;&lt;br&gt;&amp;nbsp;&amp;nbsp; with(plots):&lt;br&gt;&amp;nbsp;&amp;nbsp; solve(P1 = P11);&lt;br&gt;   m11, m12:= (min,max)(%);&lt;br&gt;&amp;nbsp;&amp;nbsp; solve(P2 = P22);&lt;br&gt;   m21, m22:= (min,max)(%);&lt;br&gt;   display([spacecurve([Q1, 0, P1], Q1 = -3 .. m11, colour=red, linestyle=dash), &lt;br&gt;                 spacecurve([Q1, 0, P1], Q1 = m11 .. m12, colour=red),&amp;nbsp;&amp;nbsp; &lt;br&gt;                 spacecurve([Q1, 0, P1], Q1 = m12 .. 3, colour=red, linestyle=dash),&lt;br&gt;                 spacecurve([0, Q2, P2], Q2 = -3 .. m21, colour=blue),&lt;br&gt;                 spacecurve([0, Q2, P2], Q2 = m21 .. m22, colour=blue, linestyle=dash),&lt;br&gt;                 spacecurve([0, Q2, P2], Q2 = m22 .. 3, colour=blue)]);&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>102161</guid>
      <pubDate>Wed, 02 Mar 2011 22:12:01 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>