RE: How create vertical line using Plot?
- To: mathgroup at smc.vnet.net
- Subject: [mg104270] RE: [mg104232] How create vertical line using Plot?
- From: "David Park" <djmpark at comcast.net>
- Date: Sun, 25 Oct 2009 01:09:47 -0400 (EDT)
- References: <32376061.1256366768725.JavaMail.root@n11>
Use ParametricPlot instead.
ParametricPlot[{1, y}, {y, 0, 1}]
Or use the Line graphics primitive.
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/
From: davef [mailto:davidfrick2003 at yahoo.com]
How can I create a vertical line using the Plot command?
I can hack it using "y" = very big number times "x" but is there a
more elegant way to do it?