<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Plotting circle in Mathcad</title>
    <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595371#M184818</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-right" image-alt="3circles-2.png" style="width: 200px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14500i1D62A716B0666667/image-size/small?v=v2&amp;amp;px=200" role="button" title="3circles-2.png" alt="3circles-2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="3circles.png" style="width: 200px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14497iCEC2EC2520737850/image-size/small?v=v2&amp;amp;px=200" role="button" title="3circles.png" alt="3circles.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="10circles.png" style="width: 285px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14498i44602C06846C9A6D/image-dimensions/285x161?v=v2" width="285" height="161" role="button" title="10circles.png" alt="10circles.png" /&gt;&lt;/span&gt;&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;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="100circles.png" style="width: 400px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14499iDA87E4A24D3CF0B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="100circles.png" alt="100circles.png" /&gt;&lt;/span&gt;n=100&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;
&lt;P&gt;&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using posted techniques.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 23 Feb 2019 08:32:34 GMT</pubDate>
    <dc:creator>ttokoro</dc:creator>
    <dc:date>2019-02-23T08:32:34Z</dc:date>
    <item>
      <title>Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595051#M184797</link>
      <description>&lt;P&gt;Hi everyone.&lt;/P&gt;
&lt;P&gt;I'm trying to plot 2 lines and a circle in mathcad prime 4, in the form (x-x0)^2+(y-y0)^2=R^2.&lt;/P&gt;
&lt;P&gt;I have values for x0 and y0 and R, but I can't figure out how to plot it. Solving for y gives me complex numbers.&lt;/P&gt;
&lt;P&gt;x0 and y0 are defined values of some earlier calculations, so their value can change, so they are not "fixed" numbers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any simple way to do this? (Seems all the info on this I can find is pretty old, and I can't open example files and such...)&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>
      <pubDate>Thu, 21 Feb 2019 08:56:24 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595051#M184797</guid>
      <dc:creator>MC_BT_18</dc:creator>
      <dc:date>2019-02-21T08:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595058#M184798</link>
      <description>&lt;P&gt;One way is as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i:=0..360&lt;/P&gt;
&lt;P&gt;thetai = i*deg &amp;nbsp; &amp;nbsp;(i as a subscript on theta)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;x:=x0+R*cos(theta)&lt;/P&gt;
&lt;P&gt;y:=y0+R*sin(theta)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then simply plot y vs x.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 09:25:07 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595058#M184798</guid>
      <dc:creator>AlanStevens</dc:creator>
      <dc:date>2019-02-21T09:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595068#M184799</link>
      <description>&lt;P&gt;Ok, that works. Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Any way to make it a function of x? That would be great, that way I could check intersection points with the lines..&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 11:02:48 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595068#M184799</guid>
      <dc:creator>MC_BT_18</dc:creator>
      <dc:date>2019-02-21T11:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595102#M184800</link>
      <description>&lt;P&gt;You can plot versus x, but it's a double-valued function:&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 14:03:28 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595102#M184800</guid>
      <dc:creator>Fred_Kohlhepp</dc:creator>
      <dc:date>2019-02-21T14:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595124#M184801</link>
      <description>&lt;P&gt;You may use your appraoch even though the symbolic result uses the imaginary unit (the values derived are real anyway):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="B1.PNG" style="width: 520px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14434i9F0B715FA5C1A785/image-dimensions/520x365?v=v2" width="520" height="365" role="button" title="B1.PNG" alt="B1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;To get a closed curve you may define a range variable for plotting as Fred had shown.&lt;/P&gt;
&lt;P&gt;But a better approach IMHO is to use different representations for calculations and for plotting. The parameter representation Alan suggested is best suited for plotting. I prefer a small program which returns a matrix of x and y-values of the points of any circle which can be used easily to plot different circles:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="B2.PNG" style="width: 409px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14435i856DAAD0EB104CF0/image-dimensions/409x143?v=v2" width="409" height="143" role="button" title="B2.PNG" alt="B2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You may use this in the following way. I also plotted the two lines which as it looks are nearly tangents of the circle:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="B3.PNG" style="width: 730px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14436iE2B6AFDDC0B1C18B/image-dimensions/730x521?v=v2" width="730" height="521" role="button" title="B3.PNG" alt="B3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Worksheet in format P5 attached&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 15:35:57 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595124#M184801</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2019-02-21T15:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595371#M184818</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-right" image-alt="3circles-2.png" style="width: 200px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14500i1D62A716B0666667/image-size/small?v=v2&amp;amp;px=200" role="button" title="3circles-2.png" alt="3circles-2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="3circles.png" style="width: 200px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14497iCEC2EC2520737850/image-size/small?v=v2&amp;amp;px=200" role="button" title="3circles.png" alt="3circles.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="10circles.png" style="width: 285px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14498i44602C06846C9A6D/image-dimensions/285x161?v=v2" width="285" height="161" role="button" title="10circles.png" alt="10circles.png" /&gt;&lt;/span&gt;&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;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="100circles.png" style="width: 400px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/14499iDA87E4A24D3CF0B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="100circles.png" alt="100circles.png" /&gt;&lt;/span&gt;n=100&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;
&lt;P&gt;&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using posted techniques.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Feb 2019 08:32:34 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/595371#M184818</guid>
      <dc:creator>ttokoro</dc:creator>
      <dc:date>2019-02-23T08:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/728338#M195897</link>
      <description>&lt;P&gt;I used the program that the one person wrote and it worked fine. &amp;nbsp;The challenge for me, not being the sharpest tool in the shed, was to figure out what the parameters were and then to figure out that I had to take the two columns of the resultant matrix separately to get the 2D plot to work. &amp;nbsp;I use PTC MCAD 3.0 PRIME but not professionally.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 May 2021 01:43:26 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/728338#M195897</guid>
      <dc:creator>ptc-5439309</dc:creator>
      <dc:date>2021-05-09T01:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/728339#M195898</link>
      <description>&lt;P&gt;PDF shows how to plot the circles.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 681px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41405iC22A8234EBAE50BA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 480px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41406i2CFE9D522D7FA679/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 May 2021 23:16:21 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/728339#M195898</guid>
      <dc:creator>ttokoro</dc:creator>
      <dc:date>2021-05-09T23:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/729153#M195943</link>
      <description>&lt;P&gt;&lt;FONT&gt;Plotting of&amp;nbsp;&lt;SPAN&gt;polygons by line is easy for Prime 7. However, plotting of closed polygons by color for Prime 7 needs tips.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 307px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41607i464E566E825B50EA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 307px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41608iDC77C31ABF41E9CD/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 307px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41609i97BFBF3D5A3B2CA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 307px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41610iB00E1F6A2A6B4B9C/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 307px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41611i4A0FDFE6341691D4/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 293px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/41612iF62B89C4A231E86F/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 23:08:57 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/729153#M195943</guid>
      <dc:creator>ttokoro</dc:creator>
      <dc:date>2021-05-13T23:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/762205#M198652</link>
      <description>&lt;P&gt;Use polar plot&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GR_6910738_0-1638810054227.png" style="width: 400px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/49660iBFF934F1DA8905E1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GR_6910738_0-1638810054227.png" alt="GR_6910738_0-1638810054227.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 17:01:18 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/762205#M198652</guid>
      <dc:creator>George_R</dc:creator>
      <dc:date>2021-12-06T17:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting circle</title>
      <link>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/762220#M198654</link>
      <description>&lt;P&gt;If you consider R to be the square root of the radius of the circle, you're OK. Otherwise:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LucMeekes_0-1638812746458.png" style="width: 400px;"&gt;&lt;img src="https://community.ptc.com/t5/image/serverpage/image-id/49664iC6410797590B5C45/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LucMeekes_0-1638812746458.png" alt="LucMeekes_0-1638812746458.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Success!&lt;BR /&gt;Luc&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 17:46:00 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Mathcad/Plotting-circle/m-p/762220#M198654</guid>
      <dc:creator>LucMeekes</dc:creator>
      <dc:date>2021-12-06T17:46:00Z</dc:date>
    </item>
  </channel>
</rss>

