<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, fieldplot3d arrows</title>
    <link>http://www.mapleprimes.com/questions/39281-Fieldplot3d-Arrows</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 21:42:16 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 21:42:16 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, fieldplot3d arrows</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, fieldplot3d arrows</title>
      <link>http://www.mapleprimes.com/questions/39281-Fieldplot3d-Arrows</link>
    </image>
    <item>
      <title>fieldplot3d</title>
      <link>http://www.mapleprimes.com/questions/39281-Fieldplot3d-Arrows?ref=Feed:MaplePrimes:fieldplot3d arrows:Comments#answer71443</link>
      <itunes:summary>&lt;p&gt;The only options for the arrows in &lt;b&gt;fieldplot3d&lt;/b&gt; are LINE, THIN, SLIM, THICK, and `3-D`.&lt;br /&gt;
An alternative might be to compute a list of individual vectors and plot them using either&lt;b&gt; plottools[arrow]&lt;/b&gt; or &lt;b&gt;plots[arrow]&lt;/b&gt;.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The only options for the arrows in &lt;b&gt;fieldplot3d&lt;/b&gt; are LINE, THIN, SLIM, THICK, and `3-D`.&lt;br /&gt;
An alternative might be to compute a list of individual vectors and plot them using either&lt;b&gt; plottools[arrow]&lt;/b&gt; or &lt;b&gt;plots[arrow]&lt;/b&gt;.&lt;/p&gt;</description>
      <guid>71443</guid>
      <pubDate>Tue, 27 May 2008 23:05:00 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Ok, any suggestions on code?</title>
      <link>http://www.mapleprimes.com/questions/39281-Fieldplot3d-Arrows?ref=Feed:MaplePrimes:fieldplot3d arrows:Comments#answer71440</link>
      <itunes:summary>&lt;p&gt;So I am trying to plot this vector field:&lt;/p&gt;
&lt;p&gt;&amp;lt;4x,4y,2&amp;gt; and use the arrow from plottools to plot these vectors because I don't like the was fieldplot3d does it.&lt;/p&gt;
&lt;p&gt;arrow(basepoint,dir,options) is the code I am using, basically this:&lt;/p&gt;
&lt;p&gt;arrow(vector([x,y,z]), F, .2, .4, .1, cylindrical_arrow):&lt;br /&gt;
where F is the field above.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I can't seem to get this to work. Any suggestions? I am baically tying to take a field F, and create a list of vectors to plot in plot3d, but am unsure how to calculate these vectors and turn them into arrows.&lt;/p&gt;
&lt;p&gt;Thanks much!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;So I am trying to plot this vector field:&lt;/p&gt;
&lt;p&gt;&amp;lt;4x,4y,2&amp;gt; and use the arrow from plottools to plot these vectors because I don't like the was fieldplot3d does it.&lt;/p&gt;
&lt;p&gt;arrow(basepoint,dir,options) is the code I am using, basically this:&lt;/p&gt;
&lt;p&gt;arrow(vector([x,y,z]), F, .2, .4, .1, cylindrical_arrow):&lt;br /&gt;
where F is the field above.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I can't seem to get this to work. Any suggestions? I am baically tying to take a field F, and create a list of vectors to plot in plot3d, but am unsure how to calculate these vectors and turn them into arrows.&lt;/p&gt;
&lt;p&gt;Thanks much!&lt;/p&gt;</description>
      <guid>71440</guid>
      <pubDate>Wed, 28 May 2008 00:06:55 Z</pubDate>
      <itunes:author>barretbp</itunes:author>
      <author>barretbp</author>
    </item>
    <item>
      <title>Thank you!</title>
      <link>http://www.mapleprimes.com/questions/39281-Fieldplot3d-Arrows?ref=Feed:MaplePrimes:fieldplot3d arrows:Comments#answer71419</link>
      <itunes:summary>&lt;p&gt;Thanks so much, that worked perfectly!!!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks so much, that worked perfectly!!!&lt;/p&gt;</description>
      <guid>71419</guid>
      <pubDate>Wed, 28 May 2008 20:34:27 Z</pubDate>
      <itunes:author>barretbp</itunes:author>
      <author>barretbp</author>
    </item>
    <item>
      <title>Cylindrical arrows</title>
      <link>http://www.mapleprimes.com/questions/39281-Fieldplot3d-Arrows?ref=Feed:MaplePrimes:fieldplot3d arrows:Comments#comment83465</link>
      <itunes:summary>&lt;p&gt;First get the list of base points, e.g.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; basepts := [seq(seq(seq( 2*[x,y,z], x = -2 .. 2), y = -2 .. 2), z = -2 .. 2)]:
&lt;/pre&gt;
&lt;p&gt;Now write a function that takes a base point and returns the corresponding arrow.&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; makearrow:= P -&amp;gt; plottools:-arrow(P, &amp;lt;0.4*P[1], 0.4*P[2], 1&amp;gt;, 
&amp;nbsp;&amp;nbsp; .2, .4, .3, cylindrical_arrow, fringe=black) ; 
&lt;/pre&gt;
&lt;p&gt;Apply this to each base point, and display the result.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; plots[display](map(makearrow, basepts), scaling=constrained, 
     axes=box);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;First get the list of base points, e.g.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; basepts := [seq(seq(seq( 2*[x,y,z], x = -2 .. 2), y = -2 .. 2), z = -2 .. 2)]:
&lt;/pre&gt;
&lt;p&gt;Now write a function that takes a base point and returns the corresponding arrow.&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; makearrow:= P -&amp;gt; plottools:-arrow(P, &amp;lt;0.4*P[1], 0.4*P[2], 1&amp;gt;, 
&amp;nbsp;&amp;nbsp; .2, .4, .3, cylindrical_arrow, fringe=black) ; 
&lt;/pre&gt;
&lt;p&gt;Apply this to each base point, and display the result.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; plots[display](map(makearrow, basepts), scaling=constrained, 
     axes=box);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>83465</guid>
      <pubDate>Wed, 28 May 2008 10:30:30 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>