Ask Your Question
1

how to plot vertical lines

asked 7 years ago

anonymous user

Anonymous

how do I plot a vertical line such as x = 3, together with another graph, such as y = x^3?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 7 years ago

fidbc gravatar image

If P and Q are plots then you may display them together via P+Q.

For the vertical line you may use implicit_plot or just draw it manually via line.

var('x,y')
# plot line x=3
P = implicit_plot(x==3,(x,2,4),(y,-1,5))

# manualy draw line x=5
Q = line([(5,-1),(5,5)])

# display P and Q together.
(P+Q).show()

Guess plotting y=x^3 can be left as an exercise ;-)

Hint.

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

1 follower

Stats

Asked: 7 years ago

Seen: 4,253 times

Last updated: Aug 23 '17