 
 
 
 
 
 
RE: vertical lines
- To: mathgroup at smc.vnet.net
- Subject: [mg25993] RE: [mg25970] vertical lines
- From: "Krautschik, Chris G" <krautschikc at intel.co.jp>
- Date: Wed, 15 Nov 2000 02:09:44 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
How about the following example since I am not exactly sure what you
ultimately had in mind:
(* This draws a square of area unity about the origin
 so we are drawing horizontal & vertical lines *)
a = ListPlot[{{-1, -1}, {-1, 1}, {1, 1}, {1, -1}, {-1, -1}}, 
      PlotJoined -> True];
(* plot a sine wave *)
b = Plot[Sin[x], {x, -Pi, Pi}];
(* combine the two plots into one *)
Show[{a, b}];
Chris
-----Original Message-----
From: Vitalij K. Lysoff [mailto:lysov at paloma.spbu.ru]
To: mathgroup at smc.vnet.net
Subject: [mg25993] [mg25970] vertical lines
Hi, All!
How I can draw the vertical line in 2-dimensional?

