home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <stdlib.h>
- # include <stdio.h>
- # include <graph.h>
- # include <string.h>
- # include "worlddr.h"
- # include "segraph.h"
- # include "asyncxx.h"
- # include <conio.h>
-
- int code, wc,k,j,i,err;
- float rr,xx1,yy1;
- float xdata[50], ydata[50], y2data[50], y3data[50], y4data[50];
- char ch, plottype[2] = {0,0};
- int ptype, chnum;
-
-
- void main(){
- for ( i = 0; i< 50; i++) {
- rr = i+1;
- xdata[i] = rr ;
- ydata[i] = rr * rr * (rand()/32766.0)+ 0.10;
- y2data[i] = 1000 + ((2-(rand()/32766.0))/2.0) * 1000 * cos(rr/2.0);
- y3data[i] = 3000 * (1-exp(-rr/10)) * (4-(rand()/32766.0))/4.0;
- }
- InitSEGraphics(6);
- SetPercentWindow(0.01,0.01,0.255,0.22,6);
- SetPercentWindow(0.26,0.01,0.505,0.22,7);
- SetPercentWindow(0.51,0.01,0.755,0.22,8);
- SetPercentWindow(0.76,0.01,0.99,0.22,9);
- SetCurrentWindow(6); BorderCurrentWindow(1);
- SetWin2PlotRatio(6,0.20,0.20,0.05,0.20);
- ScalePlotArea(0.0,0.0,50.0, 3000.0);
- SetXYIntercepts(0, 0);
- TitleWindow("SIGNAL #1");
- TitleXAxis("FREQ.");
- TitleYAxis("MAG.");
- DrawYAxis(500, 0);
- DrawXAxis(10, 0);
- LinePlotData(xdata, ydata,50,2,0);
-
- SetCurrentWindow(7); BorderCurrentWindow(1);
- SetWin2PlotRatio(7,0.20,0.20,0.05,0.2);
- ScalePlotArea(0.0,0.0,30.0, 3000.0);
- SetXYIntercepts(0, 0);
- DrawYAxis(500, 0);
- DrawXAxis(10, 0);
- TitleWindow("SIGNAL #2");
- TitleXAxis("FREQ.");
- TitleYAxis("MAG.");
- LinePlotData(xdata, y2data,50,2,0);
-
- SetCurrentWindow(8); BorderCurrentWindow(1);
- SetWin2PlotRatio(8,0.20,0.20,0.05,0.2);
- ScalePlotArea(0.0,0.0,50.0, 3000.0);
- SetXYIntercepts(0,0);
- DrawYAxis(500, 0);
- DrawXAxis(10, 0);
- TitleWindow("SIGNAL #3");
- TitleXAxis("FREQ.");
- TitleYAxis("MAG.");
- LinePlotData(xdata, y3data,50,2,0);
-
- SetCurrentWindow(9); BorderCurrentWindow(1);
- SetWin2PlotRatio(9,0.20,0.20,0.05,0.2);
- ScalePlotArea(25.0,0.0,50.0, 3000.0);
- SetXYIntercepts(25,0);
- DrawYAxis(500, 0);
- DrawXAxis(10, 0);
- TitleWindow("SIGNAL #4");
- TitleXAxis("FREQ.");
- TitleYAxis("MAG.");
- LinePlotData(xdata, ydata,50,2,0);
- SetPercentWindow(0.0,0.25,0.99,0.80,4);
- SetPercentWindow(0.0,0.85,0.99,0.95,1);
-
-
- for ( i = 0; i< 50; i++) {
- y2data[i] = ydata[i] + 5.0;
- y3data[i] = ydata[i] - 5.0;
- }
-
- SetCurrentWindow(4);
- ClearWindow();
- SetAxesType(0,1);
- SelectColor(7);
- AutoAxes(xdata,ydata,50,0);
- LinePlotData(xdata, ydata,50,3,1);
- SelectColor(1);
- TitleWindow("SEMI-LOG PLOT");
- TitleXAxis("FREQUENCY");
- TitleYAxis("MAGNITUDE");
- BorderCurrentWindow(1);
- setlinestyleXX(1,0,0);
- DrawGridY(1);
- DrawGridX(10);
-
-
- do {
- SetCurrentWindow(1);
- ClearWindow();
- setlinestyleXX(0,0,0);
- BorderCurrentWindow(1);
- LabelGraphWindow(10,600,
- "Select Graph Type <1-3> or Q to Quit ",0,0);
- LabelGraphWindow(10,200,
- "GRAPH TYPE: 1 - LINE-PLOT 2 - SCATTER-PLOT 3 - BAR-GRAPH",0,0); ch = getch();
- ptype = (int) (ch - 48);
- ch = toupper(ch);
- if (ch != 'Q'){
- ClearWindow();
- BorderCurrentWindow(1);
- LabelGraphWindow(10,600,"Enter Axis Type <1-3> ",0,0);
- LabelGraphWindow(10,200,
- "AXES TYPE: 1 - AUTO-LIN 2 - AUTO-SEMILOG 3 - AUTO-LOG",0,0);
- ch = getch();
- chnum = (int) (ch-48);
- SetCurrentWindow(4);
- ClearWindow();
- switch (chnum) {
- case 1 : SetAxesType(0,0); break;
- case 2 : SetAxesType(0,1); break;
- case 3 : SetAxesType(1,1); break;
- }
- SelectColor(7);
- AutoAxes(xdata,ydata,50,0);
- switch ( ptype ){
- case 1 : LinePlotData(xdata, ydata,50,3,1);break;
- case 2 : ScatterPlotData(xdata,ydata,50,3,1);break;
- case 3 : BargraphData( xdata,ydata,50, 0.5,3,1 );break;
- }
- SelectColor(1);
- if (chnum == 1) TitleWindow("LINEAR PLOT");
- else if (chnum == 2 ) TitleWindow("SEMI-LOG PLOT");
- else TitleWindow("LOG PLOT");
- TitleXAxis("FREQUENCY");
- TitleYAxis("MAGNITUDE");
- BorderCurrentWindow(1);
- setlinestyleXX(1,0,0);
- if (ch == 49)
- DrawGridY(5);
- else
- DrawGridY(1);
- DrawGridX(10);
- }
- }
- while (ch != 'Q');
-
- CloseSEGraphics();
-
- }
-