home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / splot122.zip / 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.