ACE/gr is an XY plotting tool for workstations or X-termi nals using X. A few of its features are:
The five options at the top of the xmgr main window File, Data, Graph, Page and View each provide extensive pulldown menus with several options. For example, left clicking on the View button produces the following options:
Example code
program xmgr1
parameter(nmax = 100, v = 64.0)
open(unit=2,file='test1_xmgr.dat',status='unknown')
f = 0.0
do 1 n = 0,nmax
s = 1.0/(1.0 - f + f/v)
write(2,*)f,s
f = f + .01
1 continue
end
You now have a data file to load into the application xmgr. If xmgr is
still running you can load the data file test1_xmgr.dat using
the option File/Read sets.This method will usually require that the viewport be re scaled to fit the data. This resizing can be accomplished by left clicking on the button marked on the left side of the xmgr window or with the option Graph/Autoscale.
If xmgr is not running, your data set can be loaded from the command line by typing xmgr test1_xmgr.dat. Loading from the command line will generally avoid the need to rescale the viewport.
A single xmgr data file can contain multiple data sets by separating the different data sets with an ampersand (&).
When the mouse is on the canvas (where the graph is drawn), there are some shortcuts that can be taken to bring up several popups. They are:
For more information on xmgr see the following URL:
http://www.nscee.edu/nscee/Software/Origin2000/xmgr
[an error occurred while processing this directive]