First time here? Check out the FAQ!

Ask Your Question
0

plot arbitrary 2 vectors

asked 11 years ago

Mohamed Gaafar gravatar image

I just tried to plot these 2 vectors a and b:

sage: a = [0, 0, 0, 0, 0, 2/25, 13/20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
sage: b = range(50,70)
sage: plot(a,b)

but an error occurs: ValueError: too many values to unpack any help ???

Preview: (hide)

Comments

What are you trying to plot? Obviously we can't plot 50-d vectors. Also, these are not vector objects.

kcrisman gravatar imagekcrisman ( 11 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 11 years ago

calc314 gravatar image

I'm not sure what you are trying to do, but here is something you might be able to modify for your purpose.

a = [0, 0, 0, 0, 0, 2/25, 13/20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
b = range(50,70)
q=map(lambda x: arrow((0,0),x),zip(a,b))
add(q)
Preview: (hide)
link

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: 11 years ago

Seen: 277 times

Last updated: Nov 16 '13