Re: How can I graph 3D vectors in Mathematica?
- To: mathgroup at smc.vnet.net
- Subject: [mg67454] Re: How can I graph 3D vectors in Mathematica?
- From: Peter Pein <petsie at dordos.net>
- Date: Mon, 26 Jun 2006 00:12:53 -0400 (EDT)
- References: <e7lf3a$3ln$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Michael schrieb:
> 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!
>
What about ParametricPlot3D[{Sin[t],t,Cos[t]},{t,-Pi,Pi}]?