First time here? Check out the FAQ!

Ask Your Question
0

Plot Series of 3D Direction Vectors (Not All from Origen)

asked 12 years ago

Justin1 gravatar image

updated 12 years ago

calc314 gravatar image

Hi,

I'm trying to plot a series of vectors. I've pasted what I have below. The problem is that I want to plot the second vector, starting from the end of the first vector. If I run the commands below, I get two vectors plotted as I want (with arrows) but they are both from the origin.

I tried looking at MATPLOTLIB to see what to do but I got stuck.

Is there an easy way to plot a series of vectors in the way that I want?

a=vector([1,1,1])
b=vector([2,2,3])
aPlot=plot(a, legend_label='Vector a')
bPlot=plot(b, legend_label='Vector b')
AllPlot=aPlot+bPlot
AllPlot.show()
Preview: (hide)

2 Answers

Sort by » oldest newest most voted
3

answered 12 years ago

Jason Grout gravatar image

You can use the start keyword to give a starting point or vector:

a=vector([1,1,1])
b=vector([-1,2,3])
plot(a)+plot(b, start=a)
Preview: (hide)
link
2

answered 12 years ago

achrzesz gravatar image
sage: a1=arrow((0,0,0), (1,1,1))
sage: a2=arrow((1,1,1), (2,2,3))
sage: a3=arrow((2,2,3), (3,3,1))
sage: a1+a2+a3
Preview: (hide)
link

Comments

Thanks very much!

Justin1 gravatar imageJustin1 ( 12 years ago )

The point being of course that a vector "always" starts at the origin, though some books would disagree.

kcrisman gravatar imagekcrisman ( 12 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 6,746 times

Last updated: Jul 24 '12