<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Plot a surface on a circular domain</title>
    <link>http://www.mapleprimes.com/questions/127251-Plot-A-Surface-On-A-Circular-Domain</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 12 Jun 2026 11:15:14 GMT</lastBuildDate>
    <pubDate>Fri, 12 Jun 2026 11:15:14 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Plot a surface on a circular domain</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Plot a surface on a circular domain</title>
      <link>http://www.mapleprimes.com/questions/127251-Plot-A-Surface-On-A-Circular-Domain</link>
    </image>
    <item>
      <title>one way: piecewise</title>
      <link>http://www.mapleprimes.com/questions/127251-Plot-A-Surface-On-A-Circular-Domain?ref=Feed:MaplePrimes:Plot a surface on a circular domain:Comments#answer127252</link>
      <itunes:summary>&lt;pre&gt;plot3d(piecewise(x^2+y^2&amp;lt;=1,4*x^2-y^2,undefined),x=-2..2,y=-2..2,axes=box);
&lt;/pre&gt;
&lt;p&gt;Throw in the `grid` option, to refine the resolution. Eg, toss grid=[50,50] in as another optional argument to that plot3d() call.&lt;/p&gt;</itunes:summary>
      <description>&lt;pre&gt;plot3d(piecewise(x^2+y^2&amp;lt;=1,4*x^2-y^2,undefined),x=-2..2,y=-2..2,axes=box);
&lt;/pre&gt;
&lt;p&gt;Throw in the `grid` option, to refine the resolution. Eg, toss grid=[50,50] in as another optional argument to that plot3d() call.&lt;/p&gt;</description>
      <guid>127252</guid>
      <pubDate>Tue, 01 Nov 2011 05:21:51 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
    <item>
      <title>Cylindrical coordinates</title>
      <link>http://www.mapleprimes.com/questions/127251-Plot-A-Surface-On-A-Circular-Domain?ref=Feed:MaplePrimes:Plot a surface on a circular domain:Comments#answer127253</link>
      <itunes:summary>&lt;p&gt;I think the best way to do this is using cylindrical coordinates.&lt;/p&gt;
&lt;pre&gt;&amp;gt; plot3d([r,theta,4*(r*cos(theta))^2 - (r*sin(theta))^2], r = 0 .. 1, theta=0..2*Pi, &lt;br&gt;coords=cylindrical, axes=box, labels=[x,y,z]); &lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;I think the best way to do this is using cylindrical coordinates.&lt;/p&gt;
&lt;pre&gt;&amp;gt; plot3d([r,theta,4*(r*cos(theta))^2 - (r*sin(theta))^2], r = 0 .. 1, theta=0..2*Pi, &lt;br&gt;coords=cylindrical, axes=box, labels=[x,y,z]); &lt;/pre&gt;</description>
      <guid>127253</guid>
      <pubDate>Tue, 01 Nov 2011 05:42:52 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>A third way</title>
      <link>http://www.mapleprimes.com/questions/127251-Plot-A-Surface-On-A-Circular-Domain?ref=Feed:MaplePrimes:Plot a surface on a circular domain:Comments#answer127277</link>
      <itunes:summary>&lt;p&gt;You can also do it this way:&lt;/p&gt;
&lt;pre&gt;plot3d(4*x^2-y^2, x=-1..1, y=-sqrt(1-x^2)..sqrt(1-x^2));&lt;/pre&gt;
&lt;p&gt;Actually, I think Robert's cylindrical-coordinates solution is a better one for this particular example; however, I wanted to show that you can use expressions in terms of x in the y range argument.&lt;/p&gt;
&lt;p&gt;Paulina&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;You can also do it this way:&lt;/p&gt;
&lt;pre&gt;plot3d(4*x^2-y^2, x=-1..1, y=-sqrt(1-x^2)..sqrt(1-x^2));&lt;/pre&gt;
&lt;p&gt;Actually, I think Robert's cylindrical-coordinates solution is a better one for this particular example; however, I wanted to show that you can use expressions in terms of x in the y range argument.&lt;/p&gt;
&lt;p&gt;Paulina&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>127277</guid>
      <pubDate>Tue, 01 Nov 2011 21:28:45 Z</pubDate>
      <itunes:author>pchin</itunes:author>
      <author>pchin</author>
    </item>
    <item>
      <title>Thank you</title>
      <link>http://www.mapleprimes.com/questions/127251-Plot-A-Surface-On-A-Circular-Domain?ref=Feed:MaplePrimes:Plot a surface on a circular domain:Comments#answer127281</link>
      <itunes:summary>&lt;p&gt;Thanks so much for the quick response. &amp;nbsp;So far I have tried the cylindrical coordinates and it works well. &amp;nbsp;I will keep the other two methods on file. &amp;nbsp; I had considered trying Paulina's method before I posted my question but I wasn't sure if it would work and I was short of time. &amp;nbsp; I also investigated cylindrical coordinates before posting but I kept getting strange looking, incorrect graphs. &amp;nbsp;I didn't know there was a piecewise command in Maple. &amp;nbsp;Good to know. &amp;nbsp; In the past I've made 2d piecewise graphs using "display". &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks again for the help. &amp;nbsp;This site is a really big help. &amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks so much for the quick response. &amp;nbsp;So far I have tried the cylindrical coordinates and it works well. &amp;nbsp;I will keep the other two methods on file. &amp;nbsp; I had considered trying Paulina's method before I posted my question but I wasn't sure if it would work and I was short of time. &amp;nbsp; I also investigated cylindrical coordinates before posting but I kept getting strange looking, incorrect graphs. &amp;nbsp;I didn't know there was a piecewise command in Maple. &amp;nbsp;Good to know. &amp;nbsp; In the past I've made 2d piecewise graphs using "display". &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks again for the help. &amp;nbsp;This site is a really big help. &amp;nbsp;&lt;/p&gt;</description>
      <guid>127281</guid>
      <pubDate>Tue, 01 Nov 2011 22:52:46 Z</pubDate>
      <itunes:author>Melykin</itunes:author>
      <author>Melykin</author>
    </item>
  </channel>
</rss>