Re: Drawing a vector list
- To: mathgroup at smc.vnet.net
- Subject: [mg118436] Re: Drawing a vector list
- From: Christopher Arthur <aarthur at tx.rr.com>
- Date: Thu, 28 Apr 2011 06:34:34 -0400 (EDT)
Hello Hauke Reddmann,
The easiest way to do this elegantly is with Apply[] or Map[] which
takes a list and makes each element the domain of a function. The
result is also a list. For example,
f[vect_]:={Polygon[...make a triangle...]}
Apply[f[#]&,L]
Hauke Reddmann a =E9crit :
> A n00b question - I have a 3D vector list L={{A1,A2},{B1,B2},{C1,C2}...
> where for example A1={1,2,3},A2={4,5,6} and so on. I want to draw
> the vectors A1->A2 etc. LINE has no arrowhead option, ARROW only eats 2D vectors
> and VECTORPLOT3D has yet another unfitting syntax. I could do a hackjob and
> first draw LINE[L] and then make a loop adding little arrowheads at all #2
> (and I would have to compute their directions too!),
> but what is the most elegant way to program this without any DO loops?
>
>