home *** CD-ROM | disk | FTP | other *** search
-
- # include <math.h>
- # include <stdlib.h>
- # include <stdio.h>
- # include <string.h>
- # include <graph.h>
- # include "asyncxx.h"
- # include "hpplot.h"
- # include "worlddr.h"
- # include "segraph.h"
-
- int wc,k,j,i,grcolor;
- float rr, xx1,yy1,xdata[100], ydata[100];
- int n;
- char teststring[80];
-
- float frand()
- { float r;
- int i;
- i = rand();
- r = i;
- r = r / 32767.0;
- return(r);
- }
-
-
- void main()
- {
- n = 50;
- for (i = 0; i<= n-1; i++ )
- {
-
- xdata[i] = (4.0*3.1415* (frand()-0.5))+6.5;
- ydata[i] = 25.0*(1.0/(sqrt(2*3.1415*(9.0))))*exp(-((xdata[i]*xdata[i])/(2*(9.0))));
- rr = i;
- }
- /**************************************************/
- /* IF YOU WANT TO CONFIGURE FOR CGA 4 COLORS */
- /* CHOOSE InitSEGraphics(1); */
- /**************************************************/
- InitSEGraphics(6);
- for (wc = 2; wc<= 10; wc++ )
- {
- SetCurrentWindow(wc);
- SetAxesType(0,0);
-
- AutoAxes(xdata,ydata,n,1);
-
- BargraphData(xdata, ydata, n, 0.7,wc,2);
- DrawGrid(5);
- BorderCurrentWindow(wc);
- TitleWindow("College Drinking Study");
- TitleXAxis("Beers/Day");
- TitleYAxis("GPA");
- getch();
- if (wc < 7)
- ClearWindow();
-
- }
- CloseSEGraphics();
-
- }
-
-
-
-
-
-
-
-