home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / bus_pers / listplot.lha / logplot < prev    next >
Text File  |  1990-10-27  |  484b  |  22 lines

  1. .k filename/a,pltitle,plxlabel,plylabel,pldevice
  2.  
  3. ; Invoke this shell script via
  4. ;
  5. ; lineplot filename [ title [ xlabel [ylabel [ device ] ] ] ]
  6. ;
  7. ; where file filename contains the data to be plotted
  8.  
  9. .def pldevice amiga
  10. .def pltitle "ListPlot Example"
  11. .def plxlabel "X Axis"
  12. .def plylabel "Y Axis"
  13.  
  14. ListPlot +
  15.   "UseInputFile=<filename>" +
  16.   "PlotType=loglog" +
  17.   "Range=.01,100" +
  18.   "PlotTitle=<pltitle>" +
  19.   "XLabel=<plxlabel>" +
  20.   "YLabel=<plylabel>" +
  21.   "PlotDevice=<pldevice>"
  22.