home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / sharewar / os2 / grafika / splot / demo / simple.spt < prev    next >
Text File  |  1994-05-25  |  312b  |  14 lines

  1. /* demo of simplest possible data */
  2. /* plotting using all the defaults */
  3.  
  4. #include <splot.h>
  5. double *data;
  6. main() 
  7.    {     
  8.    readdata("demo\data1.dat",data);
  9.    plotdata(data);  
  10.    label(LOWER,"Position");
  11.    label(LEFT,"Wavelength in !m!m");
  12.    text(6.20,22.98,"Mepsicron Calibration");
  13.    }
  14.