Plot a straight line, parallell to the y-axis in gnuplot?

AI Thread Summary
To plot a straight line parallel to the y-axis in Gnuplot, use the command 'set parametric' followed by 'plot 20,t'. This will create a line at x = 20, but by default, it may only extend to a limited range on the y-axis. To extend the line vertically, adjust the t-range with 'plot [t=-1000:1000] 20,t'. For Windows users, Gnuplot is primarily designed for Unix systems, but it can be run on Windows through Cygwin, which allows Unix applications to operate in a Windows environment. Users need to install Cygwin and XFree86 for the graphical interface. Alternatively, Gnuplot can generate plots in PDF and Postscript formats, which may be simpler for those who find the setup complex.
Dr-NiKoN
Messages
93
Reaction score
0
How do you plot a straight line, parallell to the y-axis in gnuplot?
Something like:
x = 20
?
 
Computer science news on Phys.org
plot 20, gives y = 20, a line parallell with the x-axis.

I want x = 20
 
Try this:

'set parametric'
'plot 20,t'
 
Hm, that gives me a short line, it stops at around y = 5. I need it all the way up since I'm plotting linear unequalities.
 
'plot [t=-1000:1000] 20,t'

Just change the t-range to whatever fits for you.
 
Ah, perfect.

Thanks a lot :)
 
Looks like you've gotten the other problem of the linear programming thing figured out. ;)
 
hehe, yup :)
 
  • #10
can I get Gnuplot for windows?
 
  • #11
Yes, you can, but there's a catch. Gnuplot is primarily for Unix systems, however, an environment does exist for Win32 called Cygwin that will enable you to build Unix applications, such as Gnuplot.

You can get Cygwin (be sure to read the documentation) from:

http://www.cygwin.com

Once you have Cygwin installed, grab the Unix sources from:

http://www.gnuplot.info

Gnuplot's primary graphics environment is X11 - you'll have to install XFree86 in the Cygwin distribution. If you feel this is too complex for your tastes, Gnuplot can generate PDF and Postscript plots.

Edit: I found this nice link on Gnuplot SF site:

http://sourceforge.net/project/showfiles.php?group_id=2055&package_id=1996

There are some Win32 packages, but you might have to have the Cygwin .dll or some more dependencies that are present in the Cygwin distribution. This will save you from building Gnuplot, regardless.
 
Last edited by a moderator:
Back
Top