home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <stdlib.h>
- # include <stdio.h>
- # include <string.h>
- # include <graph.h>
- # include <stdlib.h>
- # include "asyncxx.h"
- # include "worlddr.h"
- # include "segraph.h"
-
-
-
- int err,wc,k,j,i,grcolor;
- float rr, xx1,yy1;
- int colors[5], hatch[5];
- char c;
- float GroupData[5][5];
- char XStrings[6][80];
- int groupcolor[5];
- int grouphatch[5];
- float xdata[50], ydata[50], y1data[50], y2data[50];
- 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)) + 5.0 ;
- ydata[i] = 25.0*(1.0/(sqrt(2*3.1415*(9.0))))*exp(-((xdata[i]*xdata[i])/(2*(9.0))));
- }
- open_com(0,9600,0,1,8, &err);
- PlotterOn();
- /****************************************************
- - 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);
-
- /* BAR GRAPH */
- SetCurrentWindow(7);
- ClearWindow();
- SetAxesType(0,0);
- SelectColor(2);
- AutoAxes(xdata,ydata,n,1);
- BargraphData(xdata, ydata, n, 0.4,3,2);
- DrawGrid(5);
- TitleWindow("College Drinking Study");
- TitleXAxis("Beers/Day");
- TitleYAxis("GPA");
-
- /* Scatter Data */
- SetCurrentWindow(8);
- ClearWindow();
- SelectColor(3);
- n = 20;
- for (i = 0; i<= n-1; i++ ){
- xdata[i] = xdata[i]-5;
- ydata[i] = i - xdata[i] * xdata[i] * frand();
- y1data[i] = ydata[i] - 1.0;
- y2data[i] = ydata[i] + 1.0;
- }
- AutoAxes(xdata,ydata,n,0);
- BorderCurrentWindow(2);
- ScatterPlotData(xdata, ydata, n,6, 2);
- SelectColor(5);
- TitleWindow("Roach Study");
- TitleXAxis("Radiation exposure");
- TitleYAxis("Pop. 10^6");
-
-
- /* Group Demo */
- for ( i = 0; i<= 4; i++ )
- for ( k = 0; k<= 4; k++ )
- {
- rr = i;
- xdata[i] = i+1.0;
- GroupData[k][i] = 100.0 * frand();
- }
- groupcolor[0] = 1; groupcolor[1] = 2;
- groupcolor[2] = 3; groupcolor[3] = 4; groupcolor[4] = 5;
- for ( i = 0; i<= 4; i++ )
- grouphatch[i] = i+1;
- SetCurrentWindow(9);
- ClearWindow();
- SetAxesType(0,0);
- ScalePlotArea(0.0,0.0,5.5, 500.0);
- SetXYIntercepts(0.0,0.0);
- strcpy( XStrings[0],"");
- strcpy( XStrings[1],"Rick");
- strcpy( XStrings[2],"Lisa");
- strcpy( XStrings[3],"Stef");
- strcpy( XStrings[4], "Ken");
- strcpy( XStrings[5], "Bob");
-
- SelectColor(1);
- DrawXAxis(1, 0);
- LabelXAxWithStrings(1,XStrings,6,0);
- DrawYAxis(20.0, 0);
- LabelYAxis(5,0);
- GroupPlotData(xdata, &GroupData[0][0], 5, 5,1, 0.75, groupcolor,grouphatch);
- TitleWindow("Ratologist Studies");
- TitleXAxis("Ratologist");
- TitleYAxis("# Rats/wk.");
-
-
- /* Line Plot */
- for (i = 0; i <= 50; i++ ){
- xdata[i] = i;
- ydata[i] = xdata[i]*xdata[i];
- }
- SetCurrentWindow(10);
- SetAxesType(0,0);
- SelectColor(3);
- ScalePlotArea(0.0, 0.0, 20.0,400.0);
- SetXYIntercepts(0.0,0.0);
- setlinestyleXX( 0,1,1);
- DrawYAxis( 5.0, 0);
- LabelYAxis(10.0,0);
- DrawXAxis(0.5,0);
- LabelXAxis( 10.0,0 );
-
- LinePlotData(xdata, ydata, 50, 2,0);
- TitleWindow("Hair Growth Study");
- TitleXAxis("Before/After Injections");
- TitleYAxis("Hair inches/wk.");
-
- getch();
- CloseSEGraphics();
- close_com();
- }
-
-