<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, How to plot</title>
    <link>http://www.mapleprimes.com/questions/38383-How-To-Plot</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 17:03:35 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 17:03:35 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How to plot</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How to plot</title>
      <link>http://www.mapleprimes.com/questions/38383-How-To-Plot</link>
    </image>
    <item>
      <title>I think you can use</title>
      <link>http://www.mapleprimes.com/questions/38383-How-To-Plot?ref=Feed:MaplePrimes:How to plot:Comments#answer68972</link>
      <itunes:summary>&lt;p&gt;I think you can use &amp;quot;textplot&amp;quot; command &amp;nbsp;for your purpose.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I think you can use &amp;quot;textplot&amp;quot; command &amp;nbsp;for your purpose.&lt;/p&gt;</description>
      <guid>68972</guid>
      <pubDate>Wed, 12 Nov 2008 05:44:52 Z</pubDate>
      <itunes:author>werner.melzer</itunes:author>
      <author>werner.melzer</author>
    </item>
    <item>
      <title>How to plot</title>
      <link>http://www.mapleprimes.com/questions/38383-How-To-Plot?ref=Feed:MaplePrimes:How to plot:Comments#answer68971</link>
      <itunes:summary>&lt;p&gt;In Maple 12.&amp;nbsp; Plot your function:&lt;/p&gt;
&lt;p&gt;&amp;gt;plot(sin(x),x);&lt;/p&gt;
&lt;p&gt;Right click on the plot.&amp;nbsp; Go to Axes, then select Properties.&amp;nbsp; Uncheck the box that says:&amp;nbsp; Let the renderer chosse tickmarks.&amp;nbsp; Clcik the Custom Spacing Circle.&amp;nbsp; Then check off the box that says: Multiply by Pi.&amp;nbsp; If the default range is not long enough, then you can change it by assinging a range value to x.&lt;/p&gt;
&lt;p&gt;&amp;gt;plot(sin(x),x=-15..15);&lt;/p&gt;
&lt;p&gt;I believe this is available in Maple 11 as well.&amp;nbsp; If you are using an&amp;nbsp; earlier version, then see this &lt;a href="http://www.maplesoft.com/support/MapleV/Plotting/12.aspx"&gt;link&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;In Maple 12.&amp;nbsp; Plot your function:&lt;/p&gt;
&lt;p&gt;&amp;gt;plot(sin(x),x);&lt;/p&gt;
&lt;p&gt;Right click on the plot.&amp;nbsp; Go to Axes, then select Properties.&amp;nbsp; Uncheck the box that says:&amp;nbsp; Let the renderer chosse tickmarks.&amp;nbsp; Clcik the Custom Spacing Circle.&amp;nbsp; Then check off the box that says: Multiply by Pi.&amp;nbsp; If the default range is not long enough, then you can change it by assinging a range value to x.&lt;/p&gt;
&lt;p&gt;&amp;gt;plot(sin(x),x=-15..15);&lt;/p&gt;
&lt;p&gt;I believe this is available in Maple 11 as well.&amp;nbsp; If you are using an&amp;nbsp; earlier version, then see this &lt;a href="http://www.maplesoft.com/support/MapleV/Plotting/12.aspx"&gt;link&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</description>
      <guid>68971</guid>
      <pubDate>Wed, 12 Nov 2008 06:32:28 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
    <item>
      <title>How to plot.</title>
      <link>http://www.mapleprimes.com/questions/38383-How-To-Plot?ref=Feed:MaplePrimes:How to plot:Comments#answer68948</link>
      <itunes:summary>&lt;p&gt;Your first line, under the command with(plots): has an error in the range.&lt;/p&gt;
&lt;p&gt;p1:=plot(sin(x),x=-2*Pi...2*Pi,tickmarks=[0,0],color=black):&lt;/p&gt;
&lt;p&gt;should be&lt;/p&gt;
&lt;p&gt;p1:=plot(sin(x),x=-2*Pi..2*Pi,tickmarks=[0,0],color=black):&lt;/p&gt;
&lt;p&gt;You have an extra dot between -2*Pi and 2*Pi.&amp;nbsp; I do not know if this will fix anything, but it does not help.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Later edit.&amp;nbsp; This does not matter.&amp;nbsp; It will not fix the LaTeX issue.&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;For your textplot question, here is an example that you can modify for your own use.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;restart:&lt;br /&gt;
with(plots):&lt;br /&gt;
p := plot(sin(x), x = -2*Pi .. 2*Pi, tickmarks = [0, 0], color = black):&lt;br /&gt;
t1 := textplot([4*Pi*(1/3)+1, 1, typeset(''y = 2*cos((1/2)*x-(1/6)*Pi)'')], align = above):&lt;br /&gt;
t2 := textplot([5, .5, typeset(''y = 2*cos(x/(2*Pi))'')], align = above):&lt;br /&gt;
display({p, t1, t2});&lt;/p&gt;
&lt;p&gt;You can play with the location values to align the equation wherever you want it.&lt;/p&gt;
&lt;p&gt;The above will not work with the Classic V12 interface.&amp;nbsp; Only with the Standard interface.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Your first line, under the command with(plots): has an error in the range.&lt;/p&gt;
&lt;p&gt;p1:=plot(sin(x),x=-2*Pi...2*Pi,tickmarks=[0,0],color=black):&lt;/p&gt;
&lt;p&gt;should be&lt;/p&gt;
&lt;p&gt;p1:=plot(sin(x),x=-2*Pi..2*Pi,tickmarks=[0,0],color=black):&lt;/p&gt;
&lt;p&gt;You have an extra dot between -2*Pi and 2*Pi.&amp;nbsp; I do not know if this will fix anything, but it does not help.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Later edit.&amp;nbsp; This does not matter.&amp;nbsp; It will not fix the LaTeX issue.&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;For your textplot question, here is an example that you can modify for your own use.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;restart:&lt;br /&gt;
with(plots):&lt;br /&gt;
p := plot(sin(x), x = -2*Pi .. 2*Pi, tickmarks = [0, 0], color = black):&lt;br /&gt;
t1 := textplot([4*Pi*(1/3)+1, 1, typeset(''y = 2*cos((1/2)*x-(1/6)*Pi)'')], align = above):&lt;br /&gt;
t2 := textplot([5, .5, typeset(''y = 2*cos(x/(2*Pi))'')], align = above):&lt;br /&gt;
display({p, t1, t2});&lt;/p&gt;
&lt;p&gt;You can play with the location values to align the equation wherever you want it.&lt;/p&gt;
&lt;p&gt;The above will not work with the Classic V12 interface.&amp;nbsp; Only with the Standard interface.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</description>
      <guid>68948</guid>
      <pubDate>Thu, 13 Nov 2008 08:54:32 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
    <item>
      <title>simplified plots</title>
      <link>http://www.mapleprimes.com/questions/38383-How-To-Plot?ref=Feed:MaplePrimes:How to plot:Comments#answer68947</link>
      <itunes:summary>&lt;p&gt;Can't you get the first plot with a single plot command?&lt;/p&gt;
&lt;pre&gt;
plot( sin(x), x=-2*Pi..2*Pi, color=black, tickmarks=[spacing(Pi/2,0),3] );
&lt;/pre&gt;
&lt;p&gt;You will have, in general, better success with math expressions in plot captions, etc., if you use the typesetting capabilities built-in to plot. For example,&lt;/p&gt;
&lt;pre&gt;
plot( 2*cos(x/2-Pi/6), x=-2*Pi..2*Pi,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tickmarks=[spacing(Pi/2,0),3],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; title=typeset(&amp;quot;A plot of one period of \n&amp;quot;, y=2*cos(x/2-Pi/6)) );
&lt;/pre&gt;
&lt;p&gt;As far as creating plots for use in LaTeX, my current process is to manually export the plot to a GIF or JPEG file, then convert each image to a PDF file, which can now be brought into my (pdf)LaTeX documents. (The exporting to a file can be automated using plotsetup.&lt;/p&gt;
&lt;p&gt;I think you'll have much more success with this approach.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu       
Phone:  (803) 777-6183         URL:    http://www.math.sc.ed&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Can't you get the first plot with a single plot command?&lt;/p&gt;
&lt;pre&gt;
plot( sin(x), x=-2*Pi..2*Pi, color=black, tickmarks=[spacing(Pi/2,0),3] );
&lt;/pre&gt;
&lt;p&gt;You will have, in general, better success with math expressions in plot captions, etc., if you use the typesetting capabilities built-in to plot. For example,&lt;/p&gt;
&lt;pre&gt;
plot( 2*cos(x/2-Pi/6), x=-2*Pi..2*Pi,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tickmarks=[spacing(Pi/2,0),3],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; title=typeset(&amp;quot;A plot of one period of \n&amp;quot;, y=2*cos(x/2-Pi/6)) );
&lt;/pre&gt;
&lt;p&gt;As far as creating plots for use in LaTeX, my current process is to manually export the plot to a GIF or JPEG file, then convert each image to a PDF file, which can now be brought into my (pdf)LaTeX documents. (The exporting to a file can be automated using plotsetup.&lt;/p&gt;
&lt;p&gt;I think you'll have much more success with this approach.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu       
Phone:  (803) 777-6183         URL:    http://www.math.sc.ed&lt;/pre&gt;</description>
      <guid>68947</guid>
      <pubDate>Thu, 13 Nov 2008 09:31:30 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
    <item>
      <title>simplified plot</title>
      <link>http://www.mapleprimes.com/questions/38383-How-To-Plot?ref=Feed:MaplePrimes:How to plot:Comments#answer68946</link>
      <itunes:summary>&lt;p&gt;Doug, the above plot command does not&amp;nbsp; actually label the plot with y=2*cos(x/2-Pi/6)).&amp;nbsp; Maple &amp;quot;simplifies&amp;quot; and labels it as y=2*sin(x/2+Pi/3).&amp;nbsp; I realize that these are the same, but the typeset command should just label the plots with whatever we tell it to label them with, and not automatically simplify into another trigonometric form, regardless of the equality of the two statements.&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Doug, the above plot command does not&amp;nbsp; actually label the plot with y=2*cos(x/2-Pi/6)).&amp;nbsp; Maple &amp;quot;simplifies&amp;quot; and labels it as y=2*sin(x/2+Pi/3).&amp;nbsp; I realize that these are the same, but the typeset command should just label the plots with whatever we tell it to label them with, and not automatically simplify into another trigonometric form, regardless of the equality of the two statements.&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>68946</guid>
      <pubDate>Thu, 13 Nov 2008 09:59:12 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
    <item>
      <title>Typeset title in plots</title>
      <link>http://www.mapleprimes.com/questions/38383-How-To-Plot?ref=Feed:MaplePrimes:How to plot:Comments#answer68941</link>
      <itunes:summary>&lt;p&gt;The real reason you're seeing the difference in the titles is because of standard and extended typesetting. The plot system currently uses standard typesetting, even when the user changes the default to extended. However, the call to Typesetting[Typeset] generates the extended typesetting output. We hope to resolve some of these standard/extended typesetting issues in the future. In the meantime, you can use Typesetting[Typeset] to achieve the desired result, but it's one of those &amp;quot;use at your own risk&amp;quot; routines. It's meant to be an internal undocumented routine, but there is some information about it on the Typesetting help page, as it can be useful to users in some cases.&lt;/p&gt;
&lt;p&gt;If you are not restricted to generating all parts of the plot programmatically and can adjust it interactively, then the easiest way to get the desired title is to edit the title in place using the context menu.&lt;/p&gt;
&lt;p&gt;Paulina Chin&lt;br /&gt;
Maplesoft&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The real reason you're seeing the difference in the titles is because of standard and extended typesetting. The plot system currently uses standard typesetting, even when the user changes the default to extended. However, the call to Typesetting[Typeset] generates the extended typesetting output. We hope to resolve some of these standard/extended typesetting issues in the future. In the meantime, you can use Typesetting[Typeset] to achieve the desired result, but it's one of those &amp;quot;use at your own risk&amp;quot; routines. It's meant to be an internal undocumented routine, but there is some information about it on the Typesetting help page, as it can be useful to users in some cases.&lt;/p&gt;
&lt;p&gt;If you are not restricted to generating all parts of the plot programmatically and can adjust it interactively, then the easiest way to get the desired title is to edit the title in place using the context menu.&lt;/p&gt;
&lt;p&gt;Paulina Chin&lt;br /&gt;
Maplesoft&lt;/p&gt;</description>
      <guid>68941</guid>
      <pubDate>Thu, 13 Nov 2008 18:08:45 Z</pubDate>
      <itunes:author>pchin</itunes:author>
      <author>pchin</author>
    </item>
  </channel>
</rss>