home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <stdlib.h>
- # include <stdio.h>
- # include <graph.h>
- # include <string.h>
- # include "hpplot.h"
- # include "worlddr.h"
- # include "segraph.h"
- # include "asyncxx.h"
-
- int wc,k,j,i,grcolor;
- float rr, xx1,yy1,xdata[100], ydata[100], y1data[100], y2data[100];
- int colors[10], hatch[10];
- char c;
- int n;
- float frand()
- { float r;
- int i;
- i = rand();
- r = i;
- r = r / 32767.0;
- return(r);
- }
-
-
- void main()
- {
-
-
-
- n = 20;
- for ( i = 0; i <= n-1; i++)
- {
- rr = i;
- xdata[i] = (4.0*3.1415* (frand()-0.5)) ;
- ydata[i] = rr - xdata[i] * xdata[i] * frand();
- }
- SortDataX(xdata,ydata,n,0);
- for ( i = 0; i <= n-1; i++)
- {
- y1data[i] = ydata[i] - 1.0;
- y2data[i] = ydata[i] + 1.0;
- }
-
- /****************************************************
- - IF YOU WANT TO CONFIGURE FOR CGA 4 COLORS
- CHOOSE InitSEGraphics(1);
- - HERCULES SUPPORT IS NOW INCLUDED IN MICROSOFT
- C VERSION 5.1. IF YOU WANT TO USE THE
- HERCULES DRIVER YOU MUST FIRST INSTALL
- MSHERC.COM FROM DOS BY TYPING
- msherc<enter>
- THEN IN YOUR MAIN PROGRAM CALL
- InitSEGraphics(12);
- - REFER TO THE README.DOC FILE - PART 3
- INCLUDED IN YOUR MICROSOFT C 5.1 COMPILER
- FOR DETAILS ON ADDED HERCULES SUPPORT.
- **************************************************/
-
- InitSEGraphics(6);
- for (wc = 1; wc <= 10; wc++)
- {
- SetCurrentWindow(wc);
- ClearWindow();
- SetAxesType(0,0);
-
- AutoAxes(xdata,ydata,n,(wc % 2));
- LinePlotData(xdata, ydata, n,2, 1);
- ScatterPlotData( xdata,ydata,n,5,1);
- PlotErrorBars(xdata, y1data, y2data, n,6,0.4);
-
- TitleWindow("Error Bar Demo");
- TitleXAxis(" Independent Variable");
- TitleYAxis(" Dependent Variable");
- getch();
-
- ClearWindow();
- }
- CloseSEGraphics();
-
- }
-
-
-
-
-
-
-