Re: Plotting A verticle line?
- To: mathgroup at smc.vnet.net
- Subject: [mg21611] Re: [mg21593] Plotting A verticle line?
- From: "Tomas Garza" <tgarza at mail.internet.com.mx>
- Date: Sun, 16 Jan 2000 22:43:56 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Thomas Skipper [skipper at worldnet.att.net] wrote: > Well, after reading some of the posts in this group, this is probably > going to seem like trivial question, but it's really bugging me: > How do you get Mathematica to plot a straight verticle line? Well, there are a number of ways, depending on what you want to do with it, or where it comes from, but a simple way would be: In[1]:= vertLin = Line[{{2, -1}, {2, 1}}]; In[2]:= Show[Graphics[vertLin], Axes -> True] Tomas Garza Mexico City