Re: How can I graph 3D vectors in Mathematica?
- To: mathgroup at smc.vnet.net
- Subject: [mg67455] Re: [mg67447] How can I graph 3D vectors in Mathematica?
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Mon, 26 Jun 2006 00:12:55 -0400 (EDT)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`"];
ParametricPlot3D[{Sin[t], t, Cos[t]},
{t, 0,4Pi},ImageSize->500];
Bob Hanlon
---- Michael <sirhankins at gmail.com> wrote:
> Hi, I am trying to figure out hout to make Mathematica graph 3D vectors. For example, I would like to graph
>
> v = <sin(t), t, cos(t)>
>
> However, I have not been able to figure out what lines to type in to output the graph.
>
> I'm relatively new to the software, so any info would be great.
>
> If anyone can help me figure out what to input in order to output the graph of this type of vector, I'd be very thankful!
>