home *** CD-ROM | disk | FTP | other *** search
- /* demo of simple data plotting but*/
- /* over riding some of the defaults */
-
- #include <splot.h>
- double *data;
- main()
- {
- readdata("demo\data1.dat",data);
- set(PLOTTYPE,SYMBOLS);
- set(AXESCLIP,ON);
- axes_box(11,16,-0.02,0.632,0.04,0.6335);
- plotdata(data);
- label(LOWER,"Position");
- label(LEFT,"Wavelength in !m!m");
- text(6.20,22.98,"Mepsicron Calibration");
- }
-