home *** CD-ROM | disk | FTP | other *** search
- #include <string.h>
- #include <stdlib.h>
- #include <dos.h>
- #include <graph.h>
- #include <math.h >
- #include <stdio.h>
- #include <conio.h>
- #include "worlddr.h"
- #include "hpplot.h"
-
- char stringvector[20];
- typedef char string80[80];
- typedef char string20[20];
-
- typedef struct grstype
- {
- struct WorldRect plotworld;
- struct WorldRect plotclip;
- struct WorldRect win2plotratio;
- struct viewporttype plotrect;
- struct viewporttype drawingrect;
- char LogX;
- char LogY;
- int numticx;
- int numticy;
- float xint;
- float yint;
- float tsx;
- float tsy;
- float ticspacex;
- float ticspacey;
- } grstype;
-
- typedef char string256[256];
- grstype grstat[11];
- int cwin;
- float LogScFactors[10] = {0.0,0.3010,0.4771,0.6021,0.6990,
- 0.7782,0.8451,0.9031,0.9542,1.0};
- float TwoPi = 6.2831854;
- struct WorldRect a;
- struct WorldRect b;
- struct viewporttype SeGraphWindow;
- float AspectRatio;
- int BlackAndWhite;
-
-
-
- void SetWin2PlotRatio(int win, float l,float t,float r,float b)
- {
-
- grstat[win].win2plotratio.left = l;
- grstat[win].win2plotratio.right = r;
- grstat[win].win2plotratio.top = t;
- grstat[win].win2plotratio.bottom = b;
-
-
-
- grstat[win].plotrect.left = grstat[win].drawingrect.left +
- Round((grstat[win].drawingrect.right - grstat[win].drawingrect.left)
- * grstat[win].win2plotratio.left);
- grstat[win].plotrect.bottom= grstat[win].drawingrect.bottom -
- Round((grstat[win].drawingrect.bottom - grstat[win].drawingrect.top)
- * grstat[win].win2plotratio.bottom);
- grstat[win].plotrect.right = grstat[win].drawingrect.right -
- Round((grstat[win].drawingrect.right - grstat[win].drawingrect.left)
- * grstat[win].win2plotratio.right);
- grstat[win].plotrect.top = grstat[win].drawingrect.top +
- Round((grstat[win].drawingrect.bottom - grstat[win].drawingrect.top)
- * grstat[win].win2plotratio.top);
- }
-
-
-
- void SetRect(struct viewporttype *r,int xx1,int yy1,int xx2,int yy2)
- {
- (*r).left = xx1;
- (*r).top = yy1;
- (*r).right = xx2;
- (*r).bottom = yy2;
- }
-
-
- void SetGraphAreaWorld(float a,float b,float c,float d)
- {
-
- grstat[cwin].plotworld.left = a - (c - a) *
- (grstat[cwin].win2plotratio.left/
- (1.0-(grstat[cwin].win2plotratio.left+
- grstat[cwin].win2plotratio.right)));
- grstat[cwin].plotworld.bottom = b - (d - b) *
- (grstat[cwin].win2plotratio.bottom/
- (1.0-(grstat[cwin].win2plotratio.bottom+
- grstat[cwin].win2plotratio.top)));
- grstat[cwin].plotworld.right = c + (c - a)*
- (grstat[cwin].win2plotratio.right/
- (1.0-(grstat[cwin].win2plotratio.right+
- grstat[cwin].win2plotratio.left)));
- grstat[cwin].plotworld.top = d + (d - b) *
- (grstat[cwin].win2plotratio.top/
- (1.0-(grstat[cwin].win2plotratio.top+
- grstat[cwin].win2plotratio.bottom)));
-
-
- SetWorldRect(&grstat[cwin].plotclip,a,b,c,d);
-
-
- }
-
-
- void SetGraphWindow()
- {
- SetGraphViewport(grstat[cwin].drawingrect.left,
- grstat[cwin].drawingrect.top,
- grstat[cwin].drawingrect.right,
- grstat[cwin].drawingrect.bottom);
- }
-
-
- void SetCurrentWindow(int win)
- {
- cwin = win;
- SetGraphWindow();
- }
-
- float PowerCalc(float realnum,float power)
- {
- float _fret;
- if ( realnum < 1.0e-16 )
- _fret = 0.0;
- else
- _fret = pow(realnum,power);
- return(_fret);
-
- }
-
- float log10x(float realnum)
- { float _fret;
-
- if (realnum < 1.0e-16)
- realnum = 1.0e-16;
- _fret = ( float ) log10(realnum);
- return(_fret);
- }
-
-
- float logx(float realnum)
- { float _fret;
- double dreal;
-
- if (realnum < 1.0e-16)
- realnum = 1.0e-16;
- _fret = log(realnum);
- return(_fret);
- }
-
-
- void swaps(float *x1,float *x2)
- {
- float temp;
- temp = (*x2);
- (*x2) = (*x1);
- (*x1) = temp;
- }
-
-
- int NumExp(float realnum)
- {
- int _fret;
- float sign;
- _fret = floor(log10x(fabs(realnum)));
- return(_fret);
- }
-
-
- void FindMinMax(float *dataset,int numdat,
- float *minval,float *maxval)
- {
- int i;
-
- *minval = dataset[0];
- *maxval = dataset[0];
- for ( i = 0; i <= numdat - 1; i++ ) {
- if ( (dataset[i]) < (*minval) ) {
- (*minval) = (dataset[i]);
- }
- if ( (dataset[i]) > (*maxval) ) {
- (*maxval) = (dataset[i]);
- }
- }
- }
-
-
- void SortData(float *x,float *y,int n,int d)
- {
-
- static int j;
- float TempX;
- float TempY;
- int abt;
- static int k;
- float *TempArray;
-
- TempArray = (float *) calloc(n,4);
-
- if (n<= 1){ }
- else{
- for ( j=0; j <= n - 1; j++ ) {
- abt = 0;
- k = j - 1;
- TempX = x[j];
- TempY = y[j];
- while ((abt==0) && (k >= 0)) {
- if ( TempX < x[k] ) {
- x[k + 1] = x[k];
- y[k + 1] = y[k];
- k = k- 1;
- }
- else abt = 1;
- }
- y[k+1]=TempY;
- x[k+1]=TempX;
- }
-
- if (d == 0) {
- for (j=0; j<= n-1; j++){
- TempArray[j] = x[j];
- }
- for ( j = n - 1; j >= 0; j-- ) {
- x[j] = TempArray[n - 1 - j];
- }
- for (j=0; j<= n-1; j++){
- TempArray[j] = y[j];
- }
- for ( j = n - 1; j >= 0; j-- ) {
- y[j] = TempArray[n - 1 - j];
- }
- }
-
- }
- free(TempArray);
- }
-
-
- void SortDataX(float *x,float *y,int n,int d)
- {
- SortData(x,y,n,d);
- }
-
- void SortDataY(float *x,float *y,int n,int d)
- {
- SortData(y,x,n,d);
- }
-
- void SetAxesType(int PlotTypeX,int PlotTypeY)
- {
- if ( PlotTypeX == 1 ) {
- grstat[cwin].LogX = 1;
- }
- else {
- grstat[cwin].LogX = 0;
- }
- if ( PlotTypeY == 1 ) {
- grstat[cwin].LogY = 1;
- }
- else {
- grstat[cwin].LogY = 0;
- }
-
- }
-
-
- void DefGraphWindow(int xx1,int yy1,int xx2,int yy2,int win)
- {
- cwin = win;
- SetAxesType(0,0);
- SetRect(&grstat[cwin].drawingrect,xx1,yy1,xx2,yy2);
- grstat[cwin].plotrect.left = grstat[cwin].drawingrect.left +
- Round((grstat[cwin].drawingrect.right - grstat[cwin].drawingrect.left)
- * grstat[cwin].win2plotratio.left);
- grstat[cwin].plotrect.bottom= grstat[cwin].drawingrect.bottom -
- Round((grstat[cwin].drawingrect.bottom - grstat[cwin].drawingrect.top)
- * grstat[cwin].win2plotratio.bottom);
- grstat[cwin].plotrect.right = grstat[cwin].drawingrect.right -
- Round((grstat[cwin].drawingrect.right - grstat[cwin].drawingrect.left)
- * grstat[cwin].win2plotratio.right);
- grstat[cwin].plotrect.top = grstat[cwin].drawingrect.top +
- Round((grstat[cwin].drawingrect.bottom - grstat[cwin].drawingrect.top)
- * grstat[cwin].win2plotratio.top);
-
-
- SetWorldRect(&grstat[cwin].plotclip,0.0,0.0,1000.0,1000.0);
- SetWorldRect(&grstat[cwin].plotworld,0.0,0.0,1000.0,1000.0);
- SetGraphViewport(xx1,yy1,xx2,yy2);
- SetGraphAreaWorld(0.0,0.0,1000.0,1000.0);
- }
-
- void SetPercentWindow( float x1,float y1,float x2,float y2, int win )
- { int maxX, maxY;
-
- GetMaxCoords(&maxX, &maxY);
- DefGraphWindow( Round(x1*maxX),Round(y1*maxY),Round(x2*maxX),Round(y2*maxY),win);
- }
-
-
- void BorderCurrentWindow( int c )
- {
- SelectColor(c);
- rectangleXX(1,1,
- (grstat[cwin].drawingrect.right-grstat[cwin].drawingrect.left-1),
- (grstat[cwin].drawingrect.bottom-grstat[cwin].drawingrect.top-1));
- }
-
- void SetViewBackground( int c )
- {
- setfillstyleXX(1,c);
- barXX(0,0,
- (grstat[cwin].drawingrect.right-grstat[cwin].drawingrect.left),
- (grstat[cwin].drawingrect.bottom-grstat[cwin].drawingrect.top));
- }
-
- void SetPlotBackground( int c )
- {
- setfillstyleXX(1,c);
- SetGraphViewport(grstat[cwin].plotrect.left,
- grstat[cwin].plotrect.top,
- grstat[cwin].plotrect.right,
- grstat[cwin].plotrect.bottom);
- barXX(0,0,
- (grstat[cwin].plotrect.right-grstat[cwin].plotrect.left),
- (grstat[cwin].plotrect.bottom-grstat[cwin].plotrect.top));
- SetGraphViewport(grstat[cwin].drawingrect.left,
- grstat[cwin].drawingrect.top,
- grstat[cwin].drawingrect.right,
- grstat[cwin].drawingrect.bottom);
-
-
- }
-
-
- void ScaleLogX(float xx1,float xx2)
- {
- int ex1;
- int ex2;
-
- xx2 = xx2 - xx2 / 10000;
- ex2 = NumExp(xx2) + 1;
- xx2 = PowerCalc(10,ex2);
- xx1 = xx1 + xx1 / 10000.0;
- ex1 = NumExp(xx1);
- xx1 = PowerCalc(10,ex1) * 1.0001;
- SetGraphAreaWorld(xx1,grstat[cwin].plotclip.bottom,
- xx2,grstat[cwin].plotclip.top);
- grstat[cwin].LogX = 1;
- }
-
-
- void ScaleLogY(float yy1,float yy2)
- {
- int ex1;
- int ex2;
-
- yy2 = yy2 - yy2 / 10000.0;
- ex2 = NumExp(yy2) + 1;
- yy2 = PowerCalc(10,ex2);
- yy1 = yy1 + yy1 / 10000.0;
- ex1 = NumExp(yy1);
- yy1 = PowerCalc(10,ex1) * 1.0001;
- SetGraphAreaWorld(grstat[cwin].plotclip.left,yy1,
- grstat[cwin].plotclip.right,yy2);
- grstat[cwin].LogY = 1;
- }
-
-
- void ScaleLinX(float xx1,float xx2)
- {
- SetGraphAreaWorld(xx1,grstat[cwin].plotclip.bottom,
- xx2,grstat[cwin].plotclip.top);
- grstat[cwin].LogX = 0;
- }
-
-
- void ScaleLinY(float yy1,float yy2)
- {
- SetGraphAreaWorld(grstat[cwin].plotclip.left,yy1,
- grstat[cwin].plotclip.right,yy2);
- grstat[cwin].LogY = 0;
- }
-
-
- void ScalePlotArea(float xx1,float yy1,float xx2,float yy2)
- {
- if ( grstat[cwin].LogX ) {
- ScaleLogX(xx1,xx2);
- }
- else {
- ScaleLinX(xx1,xx2);
- }
- if ( grstat[cwin].LogY ) {
- ScaleLogY(yy1,yy2);
- }
- else {
- ScaleLinY(yy1,yy2);
- }
- }
-
-
- void ClearWindow()
- {
-
- ClearViewportXX();
-
- }
-
-
- void ClearGraph()
- {
- SetGraphViewport(grstat[cwin].plotrect.left+1,
- grstat[cwin].plotrect.top+1,
- grstat[cwin].plotrect.right-1,
- grstat[cwin].plotrect.bottom-1);
- ClearViewportXX();
- SetGraphViewport(grstat[cwin].drawingrect.left,
- grstat[cwin].drawingrect.top,
- grstat[cwin].drawingrect.right,
- grstat[cwin].drawingrect.bottom);
- }
-
-
- void SetXYIntercepts(float xx1,float yy1)
- {
- grstat[cwin].xint = xx1;
- grstat[cwin].yint = yy1;
- }
-
-
- void DrawTicX(float x,float y,float l)
- {
- if ( (x <= grstat[cwin].plotclip.right) && (x >= grstat[cwin].plotclip.left) ) {
- MoveWorldAbs(x,y);
- LineWorldAbs(x,y - l);
- }
- }
-
- void DrawTicY(float x,float y,float l)
- {
- if ( (y <= grstat[cwin].plotclip.top) && (y >= grstat[cwin].plotclip.bottom) ) {
- MoveWorldAbs(x,y);
- LineWorldAbs(x - l,y);
- }
- }
-
- void DrLogXAx(int dir)
- {
- float tl1;
- float tl2;
- float xx1;
- float yy1;
- float ticlen;
- int i;
- int j;
- int XLogMin;
- int XLogMax;
- float mts;
-
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
- MoveWorldAbs(grstat[cwin].plotclip.left,grstat[cwin].plotclip.bottom);
- LineWorldAbs(grstat[cwin].plotclip.right,grstat[cwin].plotclip.bottom);
- XLogMin = NumExp(grstat[cwin].plotclip.left);
- XLogMax = NumExp(grstat[cwin].plotclip.right);
- grstat[cwin].numticx = XLogMax - XLogMin;
- mts = (grstat[cwin].plotclip.right - grstat[cwin].plotclip.left)
- / grstat[cwin].numticx;
- grstat[cwin].ticspacex = mts;
- tl1 = 0.015 * (grstat[cwin].plotclip.top - grstat[cwin].plotclip.bottom);
- tl2 = 2 * tl1;
- for ( i = 0; i <= grstat[cwin].numticx - 1; i++ ) {
- for ( j = 1; j <= 10; j++ ) {
- xx1 = grstat[cwin].plotclip.left + i * mts
- + LogScFactors[j] * mts;
- yy1 = grstat[cwin].plotclip.bottom;
- if ( (j % 9) == 1 ) {
- ticlen = tl2;
- }
- else {
- ticlen = tl1;
- }
- if ( dir == 1 ) {
- ticlen = -ticlen;
- }
- DrawTicX(xx1,yy1,ticlen);
- }
- }
- }
-
- void DrLogYAx(int dir)
- {
- float tl1;
- float tl2;
- float xx1;
- float yy1;
- float ticlen;
- int i;
- int j;
- int YLogMin;
- int YLogMax;
- float mts;
-
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
- MoveWorldAbs(grstat[cwin].plotclip.left,grstat[cwin].plotclip.bottom);
- LineWorldAbs(grstat[cwin].plotclip.left,grstat[cwin].plotclip.top);
- YLogMin = NumExp(grstat[cwin].plotclip.bottom);
- YLogMax = NumExp(grstat[cwin].plotclip.top);
- grstat[cwin].numticy = YLogMax - YLogMin;
- mts = (grstat[cwin].plotclip.top - grstat[cwin].plotclip.bottom)/
- grstat[cwin].numticy;
- grstat[cwin].ticspacey = mts;
- tl1 = 0.010 * (grstat[cwin].plotclip.right - grstat[cwin].plotclip.left);
- tl2 = 2 * tl1;
- for ( i = 0; i <= grstat[cwin].numticy - 1; i++ ) {
- for ( j = 1; j <= 10; j++ ) {
- yy1 = grstat[cwin].plotclip.bottom + i * mts + LogScFactors[j - 1] * mts;
- xx1 = grstat[cwin].plotclip.left;
- if ( (j % 9) == 1 ) {
- ticlen = tl2;
- }
- else {
- ticlen = tl1;
- }
- if ( dir == 1 ) {
- ticlen = -ticlen;
- }
- DrawTicY(xx1,yy1,ticlen);
- }
- }
-
- }
-
- void DrLinXAx(float TicSpace,int dir)
- {
- float tl;
- float mts;
- float xx1;
- float yy1;
- float ticlen;
- int c;
- int i;
- int j;
-
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
- MoveWorldAbs(grstat[cwin].plotclip.left,grstat[cwin].yint);
- LineWorldAbs(grstat[cwin].plotclip.right,grstat[cwin].yint);
- grstat[cwin].numticx = Round((grstat[cwin].plotclip.right - grstat[cwin].plotclip.left)
- / TicSpace);
- grstat[cwin].ticspacex = TicSpace;
- xx1 = grstat[cwin].xint + grstat[cwin].ticspacex;
- tl = 0.015 * (grstat[cwin].plotclip.top - grstat[cwin].plotclip.bottom);
- if ( dir == 0 ) {
- ticlen = tl;
- }
- else {
- ticlen = -tl;
- }
- while ( xx1 <= grstat[cwin].plotclip.right ) {
- DrawTicX(xx1,grstat[cwin].yint,ticlen);
- xx1 = xx1 + grstat[cwin].ticspacex;
- }
- xx1 = grstat[cwin].xint - grstat[cwin].ticspacex;
- while ( xx1 >= grstat[cwin].plotclip.left ) {
- DrawTicX(xx1,grstat[cwin].yint,ticlen);
- xx1 = xx1 - grstat[cwin].ticspacex;
- }
-
- }
-
- void DrLinYAx(float TicSpace,int dir)
- {
- float tl;
- float mts;
- float xx1;
- float yy1;
- float ticlen;
- int i;
- int j;
-
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
- MoveWorldAbs(grstat[cwin].xint,grstat[cwin].plotclip.bottom);
- LineWorldAbs(grstat[cwin].xint,grstat[cwin].plotclip.top);
- grstat[cwin].numticy = Round((grstat[cwin].plotclip.top - grstat[cwin].plotclip.bottom) / TicSpace);
- grstat[cwin].ticspacey = TicSpace;
- yy1 = grstat[cwin].yint + grstat[cwin].ticspacey;
- tl = 0.01 * (grstat[cwin].plotclip.right - grstat[cwin].plotclip.left);
- if ( dir == 0 ) {
- ticlen = tl;
- }
- else {
- ticlen = -tl;
- }
- while ( yy1 <= grstat[cwin].plotclip.top ) {
- DrawTicY(grstat[cwin].xint,yy1,ticlen);
- yy1 = yy1 + grstat[cwin].ticspacey;
- }
- yy1 = grstat[cwin].yint - grstat[cwin].ticspacey;
- while ( yy1 >= grstat[cwin].plotclip.bottom ) {
- DrawTicY(grstat[cwin].xint,yy1,ticlen);
- yy1 = yy1 - grstat[cwin].ticspacey;
- }
-
- }
-
- void DrawXAxis(float TicSpace,int dir)
- {
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
- if ( grstat[cwin].LogX ) {
- DrLogXAx(dir);
- }
- else {
- DrLinXAx(TicSpace,dir);
- }
-
- }
-
- void DrawYAxis(float TicSpace,int dir)
- {
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
- if ( grstat[cwin].LogY ) {
- DrLogYAx(dir);
- }
- else {
- DrLinYAx(TicSpace,dir);
- }
-
- }
-
- void ConvertNum(float innum,float a1,float a2,float TicSpace,
- char LogFlag, char *outstr)
- {
- int n1;
- int n2;
- float range;
- char abbrev[2];
-
- if ( LogFlag ) {
- n2 = NumExp(innum);
- n1 = NumExp(innum);
- }
- else {
- if ( fabs(a2) >= fabs(a1) ) {
- n1 = NumExp(a2);
- }
- else {
- n1 = NumExp(a1);
- }
- n2 = NumExp(TicSpace) - 1;
- }
- switch ( n1 ) {
- case -1:
- case -2:
- case -3:
- case -4:
- {
- if ( n2 < 0 ) {
- n2 = -n2;
- }
- else {
- n2 = 0;
- }
- sprintf(outstr, "%*.*f", 1,n2,innum);
- }
- break;
- case 0:
- case 1:
- case 2:
- {
- if ( n2 < 0 ) {
- n2 = -n2;
- }
- else {
- n2 = 0;
- }
- sprintf(outstr, "%*.*f", 1, n2,innum);
- }
- break;
- case 3:
- case 4:
- case 5:
- {
- innum = innum / 1000.0;
- n1 = n1 - 3;
- n2 = n2 - 3;
- if ( n2 < 0 ) {
- n2 = -n2;
- }
- else {
- n2 = 0;
- }
- sprintf(outstr, "%*.*f", 1,n2,innum);
- strcpy(abbrev,"K");
- strcat(outstr,abbrev);
- }
- break;
- case 6:
- case 7:
- case 8:
- {
- innum = innum / 1000000.0;
- n1 = n1 - 6;
- n2 = n2 - 6;
- if ( n2 < 0 ) {
- n2 = -n2;
- }
- else {
- n2 = 0;
- }
- sprintf(outstr, "%*.*f",1,n2, innum);
- strcpy(abbrev,"M");
- strcat(outstr,abbrev);
- }
- break;
- case 9:
- case 10:
- case 11:
- {
- innum = innum / 1000000000.0;
- n1 = n1 - 9;
- n2 = n2 - 9;
- if ( n2 < 0 ) {
- n2 = -n2;
- }
- else {
- n2 = 0;
- }
- sprintf(outstr, "%*.*f",1,n2, innum);
- strcpy(abbrev,"B");
- strcat(outstr,abbrev);
-
- }
- break;
- default:
- {
- sprintf(outstr, "%*.*e", 1,n2,innum);
- }
- break;
- }
- }
- void LabelTicYString(float xx,float yy,char *TicLabel,int dir)
- {
- float tl=11;
- float xx1;
- float yy1;
- float h;
- float w;
-
- if ( ((yy <= grstat[cwin].plotclip.top) && (yy >= grstat[cwin].plotclip.bottom)) ) {
- tl = 0.015 * (grstat[cwin].plotclip.right - grstat[cwin].plotclip.left);
- if ( dir == 0 ) {
- DrawTicY(xx,yy,tl);
- }
- else {
- DrawTicY(xx,yy,-tl);
- }
- tl = 0.020 * (grstat[cwin].plotclip.right - grstat[cwin].plotclip.left);
- yy1 = yy;
- if ( dir == 0 ) {
- xx1 = xx - tl;
- }
- else {
- xx1 = xx + tl;
- }
- MoveWorldAbs( xx1, yy1 );
- outtextXX(TicLabel);
- }
- }
-
- void LabelTicY(float x,float y,float yval,char lf,int dir)
- {
- char labvalstr[32];
-
-
- ConvertNum(yval,grstat[cwin].plotclip.bottom,grstat[cwin].plotclip.top,
- grstat[cwin].tsy,lf,labvalstr);
- LabelTicYString(x,y,labvalstr,dir);
-
- }
-
- void LabLinYAx(int nthtic,int dir)
- {
- float yy1;
-
- grstat[cwin].tsy = grstat[cwin].ticspacey * nthtic;
- yy1 = grstat[cwin].yint;
- if (dir==0){
- if (grstat[cwin].xint != grstat[cwin].plotclip.left)
- yy1 += grstat[cwin].tsy;
- }
- else
- if (grstat[cwin].xint != grstat[cwin].plotclip.right)
- yy1 += grstat[cwin].tsy;
-
- while ( yy1 <= grstat[cwin].plotclip.top ) {
- LabelTicY(grstat[cwin].xint,yy1,yy1,0,dir);
- yy1 = yy1 + grstat[cwin].tsy;
- }
- yy1 = grstat[cwin].yint - grstat[cwin].tsy;
- while ( yy1 >= grstat[cwin].plotclip.bottom ) {
- LabelTicY(grstat[cwin].xint,yy1,yy1,0,dir);
- yy1 = yy1 - grstat[cwin].tsy;
- }
- }
-
- void LabelTicXString(float x,float y,char *TicLabel,int dir)
- {
- float tl;
- float xx1;
- float yy1;
-
- if ( (x <= grstat[cwin].plotclip.right) &&
- (x >= grstat[cwin].plotclip.left) ) {
- tl = 0.030 * (grstat[cwin].plotclip.top -
- grstat[cwin].plotclip.bottom);
- if ( dir == 0 ) {
- DrawTicX(x,y,tl);
- }
- else {
- DrawTicX(x,y,-tl);
- }
- tl = 0.035 * (grstat[cwin].plotclip.top -
- grstat[cwin].plotclip.bottom);
- if ( dir == 0 ) {
- yy1 = y - tl;
- }
- else {
- yy1 = y + tl;
- }
- xx1 = x;
- MoveWorldAbs( xx1, yy1 );
- outtextXX(TicLabel);
- }
- }
-
- void LabelTicX(float x,float y,float xval,char lf,int dir)
- {
- char labvalstr[32];
-
- ConvertNum(xval,grstat[cwin].plotclip.left,grstat[cwin].plotclip.right,
- grstat[cwin].tsx,lf,labvalstr);
- LabelTicXString(x,y,labvalstr,dir);
-
- }
-
- void LabelXAxWithStrings(int NthTic,string80 *TicStrings,int NumStrings,int dir)
- {
- float xx1;
- int i;
- if ( dir == 0 ) {
- settextjustifyXX(CENTER_TEXT,TOP_TEXT);
- }
- else {
- settextjustifyXX(CENTER_TEXT,BOTTOM_TEXT);
- }
-
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
- grstat[cwin].tsx = grstat[cwin].ticspacex * NthTic;
- /* xx1 = grstat[cwin].plotclip.left + grstat[cwin].tsx;
- */ xx1 = grstat[cwin].xint;
- if (dir == 0){
- if (grstat[cwin].yint != grstat[cwin].plotclip.bottom)
- xx1 += grstat[cwin].tsx;
- }
- else
- if (grstat[cwin].yint != grstat[cwin].plotclip.top )
- xx1 += grstat[cwin].tsx;
-
- for ( i = 0; i <= NumStrings - 1; i++ ) {
- LabelTicXString(xx1,grstat[cwin].yint,TicStrings[i],dir);
- xx1 = xx1 + grstat[cwin].tsx;
- }
- settextjustifyXX( LEFT_TEXT, CENTER_TEXT );
-
- }
-
- void LabLinXAx(int NthTic,int dir)
- {
- float xx1;
-
- grstat[cwin].tsx = grstat[cwin].ticspacex * NthTic;
- xx1 = grstat[cwin].xint;
- if (dir == 0){
- if (grstat[cwin].yint != grstat[cwin].plotclip.bottom)
- xx1 += grstat[cwin].tsx;
- }
- else
- if (grstat[cwin].yint != grstat[cwin].plotclip.top )
- xx1 += grstat[cwin].tsx;
-
-
- while ( xx1 <= grstat[cwin].plotclip.right ) {
- LabelTicX(xx1,grstat[cwin].yint,xx1,0,dir);
- xx1 = xx1 + grstat[cwin].tsx;
- }
- xx1 = grstat[cwin].xint - grstat[cwin].tsx;
- while ( xx1 >= grstat[cwin].plotclip.left ) {
- LabelTicX(xx1,grstat[cwin].yint,xx1,0,dir);
- xx1 = xx1 - grstat[cwin].tsx;
- }
-
- }
-
- void LabLogYAx(int dir)
- {
- int i;
- float yy1;
- float labval;
- grstat[cwin].tsy = grstat[cwin].ticspacey;
- for ( i = 0; i <= grstat[cwin].numticy; i++ ) {
- yy1 = grstat[cwin].plotclip.bottom + i * grstat[cwin].tsy;
- labval = grstat[cwin].plotclip.bottom * PowerCalc(10,i);
- LabelTicY(grstat[cwin].xint,yy1,labval,1,dir);
- }
-
- }
-
- void LabLogXAx(int dir)
- {
- int i;
- float xx1;
- float labval;
-
- grstat[cwin].tsx = grstat[cwin].ticspacex;
- for ( i = 0; i <= grstat[cwin].numticx; i++ ) {
- xx1 = grstat[cwin].plotclip.left + i * grstat[cwin].tsx;
- labval = grstat[cwin].plotclip.left * PowerCalc(10,i);
- LabelTicX(xx1,grstat[cwin].yint,labval,1,dir);
- }
-
- }
-
- void LabelXAxis(int NthTic,int dir)
- {
-
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
- if ( dir == 0 ) {
- settextjustifyXX(CENTER_TEXT,TOP_TEXT);
- }
- else {
- settextjustifyXX(CENTER_TEXT,BOTTOM_TEXT);
- }
- if ( grstat[cwin].LogX ) {
- LabLogXAx(dir);
- }
- else {
- LabLinXAx(NthTic,dir);
- }
- settextjustifyXX(LEFT_TEXT,CENTER_TEXT);
-
-
- }
-
-
- void LabelYAxis(int NthTic,int dir)
- {
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
- if ( dir == 0 ) {
- settextjustifyXX(RIGHT_TEXT,CENTER_TEXT);
- }
- else {
- settextjustifyXX(LEFT_TEXT, CENTER_TEXT);
- }
- if ( grstat[cwin].LogY ) {
- LabLogYAx(dir);
- }
- else {
- LabLinYAx(NthTic,dir);
- }
-
-
- settextjustifyXX(LEFT_TEXT,CENTER_TEXT);
-
- }
-
- void DrXLinGrid(int NthTic)
- {
- float xx1;
- float xx2;
- float yy1;
- float yy2;
-
- grstat[cwin].tsx = grstat[cwin].ticspacex * NthTic;
- xx1 = grstat[cwin].xint + grstat[cwin].tsx;
- yy1 = grstat[cwin].plotclip.bottom;
- yy2 = grstat[cwin].plotclip.top;
- while ( xx1 <= grstat[cwin].plotclip.right ) {
- MoveWorldAbs(xx1,yy1);
- LineWorldAbs(xx1,yy2);
- xx1 = xx1 + grstat[cwin].tsx;
- }
- xx1 = grstat[cwin].xint - grstat[cwin].tsx;
- while ( xx1 >= grstat[cwin].plotclip.left ) {
- MoveWorldAbs(xx1,yy1);
- LineWorldAbs(xx1,yy2);
- xx1 = xx1 - grstat[cwin].tsx;
- }
-
- }
-
- void DrYLinGrid(int NthTic)
- {
- float xx1;
- float xx2;
- float yy1;
- float yy2;
-
- grstat[cwin].tsy = grstat[cwin].ticspacey * NthTic;
- xx1 = grstat[cwin].plotclip.left;
- xx2 = grstat[cwin].plotclip.right;
- yy1 = grstat[cwin].yint + grstat[cwin].tsy;
- while ( yy1 <= grstat[cwin].plotclip.top ) {
- MoveWorldAbs(xx1,yy1);
- LineWorldAbs(xx2,yy1);
- yy1 = yy1 + grstat[cwin].tsy;
- }
- yy1 = grstat[cwin].yint - grstat[cwin].tsy;
- while ( yy1 >= grstat[cwin].plotclip.bottom ) {
- MoveWorldAbs(xx1,yy1);
- LineWorldAbs(xx2,yy1);
- yy1 = yy1 - grstat[cwin].tsy;
- }
-
- }
-
- void DrYLogGrid(int NthTic)
- {
- int i;
- float xx1;
- float xx2;
- float yy1;
-
- xx1 = grstat[cwin].plotclip.left;
- xx2 = grstat[cwin].plotclip.right;
- grstat[cwin].tsy = grstat[cwin].ticspacey * NthTic;
- yy1 = grstat[cwin].yint + grstat[cwin].tsy;
- for ( i = 0; i <= grstat[cwin].numticy - 1; i++ ) {
- MoveWorldAbs(xx1,yy1);
- LineWorldAbs(xx2,yy1);
- yy1 = yy1 + grstat[cwin].tsy;
- }
-
- }
-
- void DrXLogGrid(int NthTic)
- {
- int i;
- float xx1;
- float yy1;
- float yy2;
-
- yy1 = grstat[cwin].plotclip.bottom;
- yy2 = grstat[cwin].plotclip.top;
- grstat[cwin].tsx = grstat[cwin].ticspacex * NthTic;
- xx1 = grstat[cwin].xint + grstat[cwin].tsx;
- for ( i = 0; i <= grstat[cwin].numticx - 1; i++ ) {
- MoveWorldAbs(xx1,yy1);
- LineWorldAbs(xx1,yy2);
- xx1 = xx1 + grstat[cwin].tsx;
- }
-
- }
-
- void DrawGridX(int NthTic)
- {
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
- if ( grstat[cwin].LogX ) {
- DrXLogGrid(NthTic);
- }
- else {
- DrXLinGrid(NthTic);
- }
-
- }
-
- void DrawGridY(int NthTic)
- {
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
- if ( grstat[cwin].LogY ) {
- DrYLogGrid(NthTic);
- }
- else {
- DrYLinGrid(NthTic);
- }
- }
-
- void DrawGrid(int NthTic)
- {
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
- if ( grstat[cwin].LogX ) {
- DrXLogGrid(NthTic);
- }
- else {
- DrXLinGrid(NthTic);
- }
- if ( grstat[cwin].LogY ) {
- DrYLogGrid(NthTic);
- }
- else {
- DrYLinGrid(NthTic);
- }
- }
-
- void RoundAxes(float *a1,float *a2,float *tics)
- {
- float dr1;
- float dr2;
- float px2;
- float pc2;
- int di1;
- int di2;
- int digits;
-
- if (NumExp(*a2) > NumExp(*a1)) {
- px2 = NumExp(*a2) - 1;
- }
- else {
- px2 = NumExp(*a1) - 1;
- }
- pc2 = PowerCalc(10.0,px2);
- dr2 = (*a2) / pc2;
- dr1 = (*a1) / pc2;
-
- di2 = ceil(dr2 + 0.000001+(dr2-dr1)*0.05);
- if ((di2 > 0) && (dr2 <= 0.0)) di2 = 0;
-
- di1 = floor(dr1 -0.000001- (dr2-dr1)*0.05);
- if ((di1 < 0) && (dr1 >= 0.0)) di1 = 0;
-
- if ( abs(di2) < 20 ) {
- di2 = di2;
- }
- else {
- if ( abs(di2) < 60 ) {
- di2 = ((di2 / 5)+1 ) * 5;
- }
- else {
- if ( abs(di2) < 100 ) {
- di2 = ((di2 / 10)+1) * 10;
- }
- else {
- di2 = ((di2 / 10)+1) * 10;
- }
- }
- }
- if ( abs(di1) < 10 ) {
- di1 = di1;
- }
- else {
- if ( abs(di1) < 60 ) {
- di1 = ((di1 / 5)) * 5;
- }
- else {
- if ( abs(di1) < 100 ) {
- di1 = ((di1 / 10) ) * 10;
- }
- else {
- di1 = ((di1 / 10) ) * 10;
- }
- }
- }
- (*a1) = di1 * pc2;
- (*a2) = di2 * pc2;
- digits = abs(di2 - di1);
- if ( digits < 10 ) {
- (*tics) = (digits) / 5.0;
- }
- else {
- if ( digits < 20 ) {
- (*tics) = 2.0;
- }
- else {
- if ( digits < 50 ) {
- (*tics) = 5.0;
- }
- else {
- if ( digits < 80 ) {
- (*tics) = 10.0;
- }
- else {
- if ( digits < 100 ) {
- (*tics) = 20.0;
- }
- else {
- if ( digits < 151 ) {
- (*tics) = 20.0;
- }
- else {
- if ( digits < 200 ) {
- (*tics) = 50.0;
- }
- else {
- (*tics) = 100.0;
- }
- }
- }
- }
- }
- }
- }
- (*tics) = (*tics) * (pc2) / 10.0;
- }
-
-
- void AutoAxes(float *datasetx,float *datasety,int numdat,int AxFlag)
- {
- # define VerySmall 1.0e-10
- float xx1;
- float yy1;
- float xx2;
- float yy2;
- float ts1;
- float ts2;
- float xi;
- float yi;
- int dirx;
- int diry;
- int lsx;
- int lsy;
-
-
- dirx = 0;
- diry = 0;
- FindMinMax(datasetx,numdat,&xx1,&xx2);
- FindMinMax(datasety,numdat,&yy1,&yy2);
- if (!( grstat[cwin].LogX )) {
- RoundAxes(&xx1,&xx2,&ts1);
- }
- if (!( grstat[cwin].LogY )) {
- RoundAxes(&yy1,&yy2,&ts2);
- }
- if ( AxFlag == 0 ) {
- if (!( grstat[cwin].LogX )) {
- if ( (xx2 >= 0.0) && (xx1 >= 0.0) ) {
- xi = xx1;
- }
- if ( (xx2 >= 0.0) && (xx1 < 0.0) ) {
- xi = 0.0;
- }
- if ( (xx2 <= 0.0) && (xx1 <= 0.0) ) {
- xi = xx2;
- diry = 1;
- }
- }
- if (!( grstat[cwin].LogY )) {
- if ( (yy2 >= 0.0) && (yy1 >= 0.0) ) {
- yi = yy1;
- }
- if ( (yy2 >= 0.0) && (yy1 < 0.0) ) {
- yi = 0.0;
- }
- if ( (yy2 <= 0.0) && (yy1 <= 0.0) ) {
- yi = yy2;
- dirx = 1;
- }
- }
- }
- else {
- xi = xx1;
- yi = yy1;
- }
- grstat[cwin].yint = yi;
- grstat[cwin].xint = xi;
- if ( grstat[cwin].LogX ) {
- grstat[cwin].xint = xx1;
- }
- if ( grstat[cwin].LogY ) {
- grstat[cwin].yint = yy1;
- }
- ScalePlotArea(xx1,yy1,xx2,yy2);
- SetXYIntercepts(grstat[cwin].xint,grstat[cwin].yint);
- DrawYAxis(ts2,diry);
- DrawXAxis(ts1,dirx);
- lsy = 10;
- if ((grstat[cwin].plotrect.right-grstat[cwin].plotrect.left) > 400) {
- lsx = 10;
- }
- else {
- lsx = 20;
- }
- LabelYAxis(lsy,diry);
- LabelXAxis(lsx,dirx);
- }
-
- void PrePlot(float *datasetx,float *datasety,int numdat)
- {
- int i;
- float xx1;
- float yy1;
- float xx2;
- float yy2;
- struct WorldRect wr;
-
- a = grstat[cwin].plotworld;
- b = grstat[cwin].plotclip;
- if ( grstat[cwin].LogX ) {
- xx1 = log10(grstat[cwin].plotclip.left);
- xx2 = log10(grstat[cwin].plotclip.right);
- for ( i = 0; i <= numdat - 1; i++ ) {
- datasetx[i] = log10(datasetx[i]);
- }
- }
- else {
- xx1 = grstat[cwin].plotclip.left;
- xx2 = grstat[cwin].plotclip.right;
- }
- if ( grstat[cwin].LogY ) {
- yy1 = log10(grstat[cwin].plotclip.bottom);
- yy2 = log10(grstat[cwin].plotclip.top);
- for ( i = 0; i <= numdat - 1; i++ ) {
- datasety[i] = log10(datasety[i]);
- }
- }
- else {
- yy1 = grstat[cwin].plotclip.bottom;
- yy2 = grstat[cwin].plotclip.top;
- }
- SetWorldRect(&wr,xx1,yy1,xx2,yy2);
- SetGraphViewport(grstat[cwin].plotrect.left,
- grstat[cwin].plotrect.top,
- grstat[cwin].plotrect.right,
- grstat[cwin].plotrect.bottom);
- SetWorldCoordinates(wr.left,wr.bottom,wr.right,wr.top);
-
- }
-
- void CopyVectors(float *x, int n, float *x1)
- {
- int i;
- for (i=0; i<=n-1; i++)
- {
- x1[i] = x[i];
- }
- }
-
-
- void PostPlot()
- {
-
- grstat[cwin].plotworld = a;
- grstat[cwin].plotclip = b;
- SetGraphViewport(grstat[cwin].drawingrect.left,
- grstat[cwin].drawingrect.top,
- grstat[cwin].drawingrect.right,
- grstat[cwin].drawingrect.bottom);
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
-
- }
-
- void LinePlotData(float *datasetx,float *datasety,int numdat,
- int color,int linestyle)
-
- {
- int oldcolor;
- float *tx, *ty;
-
- tx = (float *) calloc(numdat,4);
- ty = (float *) calloc(numdat,4);
-
- oldcolor = getcolorXX();
- SelectColor(color);
- setlinestyleXX(linestyle, 0, 1);
-
- CopyVectors(datasetx, numdat, tx);
- CopyVectors(datasety, numdat, ty );
- PrePlot(tx,ty,numdat);
- MoveWorldAbs(tx[0],ty[0]);
- PolyLineWorldAbs(tx,ty,numdat);
- PostPlot();
-
-
- SelectColor( oldcolor );
- setlinestyleXX(0,0, 1);
- free(tx); free(ty);
- }
-
- void BargraphData(float *datasetx, float *datasety,
- int numdat,float width,int color,int HatchStyle)
- {
- int i;
- float xx1;
- float yy1;
- float xx2;
- float yy2;
- float *tx, *ty;
- int oldcolor;
-
- oldcolor = getcolorXX();
- setfillstyleXX(HatchStyle,color);
-
- tx = (float *) calloc(numdat,4);
- ty = (float *) calloc(numdat,4);
- CopyVectors(datasetx, numdat, tx);
- CopyVectors(datasety, numdat, ty );
- PrePlot(tx,ty,numdat);
- MoveWorldAbs(datasetx[0],datasety[0]);
- if ( (grstat[cwin].plotclip.top >= 0.0) &&
- (grstat[cwin].plotclip.bottom >= 0.0) ) {
- yy1 = grstat[cwin].plotclip.bottom;
- }
- if ( (grstat[cwin].plotclip.top >= 0.0) &&
- (grstat[cwin].plotclip.bottom < 0.0) ) {
- yy1 = 0.0;
- }
- if ( (grstat[cwin].plotclip.top <= 0.0) &&
- (grstat[cwin].plotclip.bottom <= 0.0) ) {
- yy1 = grstat[cwin].plotclip.top;
- }
- if (grstat[cwin].LogX)
- width = (log10(grstat[cwin].plotclip.right)
- -log10(grstat[cwin].plotclip.left))/(numdat*1.10);
- if (grstat[cwin].LogY)
- yy1 = log10(yy1);
-
- for ( i = 0; i <= numdat - 1; i++ ) {
- yy2 = ty[i];
- xx1 = tx[i];
- BarWorld(xx1,yy1,(yy2 - yy1),width,color,HatchStyle);
- }
-
- PostPlot();
- SelectColor( oldcolor);
- free(tx); free(ty);
-
- }
-
- void PlotErrorBars(float *datasetx, float *datasety1,
- float *datasety2,int numdat,int color,float width)
- {
- int i,oldcolor;
- float xx1;
- float yy1;
- float xx2;
- float yy2;
- float *tx, *ty1, *ty2;
-
- tx = (float *) calloc(numdat,4);
- ty1 = (float *) calloc(numdat,4);
- ty2 = (float *) calloc(numdat,4);
- CopyVectors( datasetx, numdat, tx);
- CopyVectors( datasety1,numdat, ty1 );
- CopyVectors( datasety2,numdat, ty2);
- oldcolor = getcolorXX();
- SelectColor(color);
-
- PrePlot(tx,ty1,numdat);
- if (grstat[cwin].LogY )
- for (i = 0; i <= numdat-1; i++ )
- ty2[i] = log10(ty2[i]);
-
- if (grstat[cwin].LogX)
- width = (log10(grstat[cwin].plotclip.right)
- -log10(grstat[cwin].plotclip.left))/(numdat*1.10);
- for ( i = 0; i <= numdat - 1; i++ ) {
- yy1 = ty1[i];
- yy2 = ty2[i];
- xx1 = tx[i] - width / 2.0;
- xx2 = xx1 + width;
- MoveWorldAbs(xx1,yy1);
- LineWorldAbs(xx2,yy1);
- MoveWorldAbs(xx1,yy2);
- LineWorldAbs(xx2,yy2);
- }
- PostPlot();
- SelectColor(oldcolor);
- free(tx); free( ty1); free(ty2);
- }
-
- void ScatterPlotData(float *datasetx,float *datasety,
- int numdat,int color, int marktype)
- {
- float PolyFillX[3][7];
- float PolyFillY[3][7];
-
- int i,k,oldcolor;
- float pfx[7];
- float pfy[7];
- float pfsfx;
- float pfsfy;
- float *tx, *ty;
-
- PolyFillX[0][0] = -0.5;
- PolyFillX[0][1] = 0.0;
- PolyFillX[0][2] = 1.0;
- PolyFillX[0][3] = 0.0;
- PolyFillX[0][4] = -1.0;
- PolyFillX[0][5] = 0.0;
- PolyFillX[0][6] = 0.0;
-
- PolyFillX[1][0] = -0.5;
- PolyFillX[1][1] = 0.5;
- PolyFillX[1][2] = 0.5;
- PolyFillX[1][3] = -1.0;
- PolyFillX[1][4] = 0.0;
- PolyFillX[1][5] = 0.0;
- PolyFillX[1][6] = 0.0;
-
- PolyFillX[2][0] = 0.0;
- PolyFillX[2][1] = -0.5;
- PolyFillX[2][2] = 0.5;
- PolyFillX[2][3] = 0.5;
- PolyFillX[2][4] = -0.5;
- PolyFillX[2][5] = 0.0;
- PolyFillX[2][6] = 0.0;
-
- PolyFillY[0][0] = -0.5;
- PolyFillY[0][1] = 1.0;
- PolyFillY[0][2] = 0.0;
- PolyFillY[0][3] = -1.0;
- PolyFillY[0][4] = 0.0;
- PolyFillY[0][5] = 0.0;
- PolyFillY[0][6] = 0.0;
-
- PolyFillY[1][0] = -0.5;
- PolyFillY[1][1] = 1.0;
- PolyFillY[1][2] = -1.0;
- PolyFillY[1][3] = 0.0;
- PolyFillY[1][4] = 0.0;
- PolyFillY[1][5] = 0.0;
- PolyFillY[1][6] = 0.0;
-
- PolyFillY[2][0] = -0.5;
- PolyFillY[2][1] = 0.5;
- PolyFillY[2][2] = 0.5;
- PolyFillY[2][3] = -0.5;
- PolyFillY[2][4] = -0.5;
- PolyFillY[2][5] = 0.0;
- PolyFillY[2][6] = 0.0;
- if( marktype >2) marktype = 0;
- tx = (float *) calloc(numdat,4);
- ty = (float *) calloc(numdat,4);
- CopyVectors(datasetx, numdat, tx );
- CopyVectors(datasety, numdat, ty );
- oldcolor = getcolorXX();
- SelectColor( color );
- PrePlot(tx,ty,numdat);
- if (grstat[cwin].LogX)
- pfsfx = (log10(grstat[cwin].plotclip.right) -
- log10(grstat[cwin].plotclip.left)) * 0.02;
- else
- pfsfx = (grstat[cwin].plotclip.right -
- grstat[cwin].plotclip.left) * 0.02;
- if (grstat[cwin].LogY)
- pfsfy = (log10(grstat[cwin].plotclip.top) -
- log10(grstat[cwin].plotclip.bottom)) * 0.02;
- else
- pfsfy = (grstat[cwin].plotclip.top -
- grstat[cwin].plotclip.bottom) * 0.02;
-
- for ( i = 0; i <= 6; i++ ) {
- pfx[i] = PolyFillX[marktype][i] * pfsfx;
- pfy[i] = PolyFillY[marktype][i] * pfsfy;
- }
- k = 5;
- for ( i = 0; i <= numdat - 1; i++ ) {
- MoveWorldAbs(tx[i],ty[i]);
- PolyLineWorldRel(pfx,pfy,k);
- }
- PostPlot();
- SelectColor( oldcolor );
- free(tx); free(ty);
-
- }
- void GroupPlotData(float *datasetx,float *GroupData,int numdat,int numgroup,
- int GraphType,float width,int *gc, int *gh)
- {
- int i;
- int j;
- float xx1;
- float yy1;
- float xx2;
- float yy2;
- float *SumVector;
- int oldcolor;
-
- float *tx, *tg;
-
- {
- tx = (float *) calloc(numdat,4);
- tg = (float *) calloc((numdat * numgroup),4);
- SumVector = (float *) calloc((numdat),4);
- CopyVectors(datasetx, numdat, tx );
- CopyVectors(GroupData, numgroup * numdat, tg );
- oldcolor = getcolorXX();
-
- for ( i = 0; i <= numdat - 1; i++ ) {
- SumVector[i] = 0.0;
- }
- for ( i = 0; i <= numgroup - 1; i++ ) {
- PrePlot(tx,&tg[i*numdat],numdat);
- }
- switch ( GraphType ) {
- case 0:
- {
- for ( i = 0; i <= numgroup - 1; i++ ) {
- for ( j = 0; j <= numdat - 1; j++ ) {
- SumVector[j] = SumVector[j] + tg[i*numdat+j];
- }
- LinePlotData(tx,SumVector,numdat,gc[i],gh[i]);
- }
- }
- break;
- case 1:
- for ( j = 0; j <= numdat - 1; j++ ) {
- xx1 = datasetx[j] - width / 2.0;
- xx2 = xx1 + width;
- for ( i = 0; i <= numgroup - 1; i++ ) {
- if ( grstat[cwin].plotclip.bottom >= SumVector[j] ) {
- yy1 = grstat[cwin].plotclip.bottom;
- }
- else {
- yy1 = SumVector[j];
- }
- SumVector[j] = SumVector[j] + GroupData[i*numdat+j];
- yy2 = SumVector[j];
- BarWorld(xx1,yy1,yy2 - yy1,xx2 - xx1,gc[i],gh[i]);
- }
- }
- break;
- case 2:
- for ( j = 0; j <= numdat - 1; j++ ) {
- for ( i = 0; i <= numgroup - 1; i++ ) {
- xx1 = (datasetx[j] - width / 2.0) + i * (width / numgroup);
- xx2 = xx1 + width / numgroup;
- if ( (grstat[cwin].plotclip.top >= 0.0) && (grstat[cwin].plotclip.bottom >= 0.0) ) {
- yy1 = grstat[cwin].plotclip.bottom;
- }
- if ( (grstat[cwin].plotclip.top >= 0.0) && (grstat[cwin].plotclip.bottom < 0.0) ) {
- yy1 = 0.0;
- }
- if ( (grstat[cwin].plotclip.top <= 0.0) && (grstat[cwin].plotclip.bottom <= 0.0) ) {
- yy1 = grstat[cwin].plotclip.top;
- }
- yy2 = GroupData[i*numdat+j];
- BarWorld(xx1,yy1,yy2 - yy1,(xx2 - xx1),gc[i],gh[i]);
- }
- }
- break;
- }
- PostPlot();
- SelectColor(oldcolor);
- }
- free(tx); free(tg);
-
- }
-
-
-
- void PieLegend(string80 *titles,int numgroup,int *gcolors, int *ghatch)
- {
- float textstart= 800.0;
- float boxsize= 40.0;
- float boxstart= 725.0;
- int i;
- struct WorldRect a;
- float ypos;
-
- SetWorldRect( &a, 0.0,0.0,1000.0,1000.0);
- SetWorldCoordinates(a.left, a.bottom, a.right, a.top);
-
- settextjustifyXX(LEFT_TEXT,BOTTOM_TEXT);
- SelectColor(15);
- MoveWorldAbs( 700, 200);
- LineWorldAbs( 700.0,800.0);
- LineWorldAbs( 995.0,800.0);
- LineWorldAbs( 995.0,200.0);
- LineWorldAbs( 700.0,200.0);
- ypos = 725;
- for (i = 0; i<= numgroup-1; i++){
- SelectColor(15);
- MoveWorldAbs(textstart, ypos);
- outtextXX( titles[i] );
- BarWorld( boxstart ,ypos,boxsize,boxsize,gcolors[i],ghatch[i]);
- ypos = ypos-(500.0/numgroup);
- }
-
- }
-
-
- void PieChart( float *xdata, int numgroup, int *gcolors, int *ghatch,
- string80 *titles, int pietype, int val, int per,
- int *explodetrue, float *explodepercent )
- {
- int i,j, xtitle,ytitle;
- float Twopi360, radius,xc,yc,xw, yw,xcenter,ycenter,
- sum,startangle,endangle,midangle,startcenter, percent;
- char numstr[80],percentstr[80], tempstr[80];
-
-
- sum = 0;
- Twopi360 = TwoPi/360.0;
- startangle = 0.0;
- endangle = 0.0;
- percent = 0.0;
- settextjustifyXX(0,CENTER_TEXT);
- if (pietype == 1)
- startcenter = 3.0;
- else startcenter = 2.0;
- xw = abs( grstat[cwin].plotrect.right - grstat[cwin].plotrect.left);
- yw = abs( grstat[cwin].plotrect.bottom - grstat[cwin].plotrect.top);
-
- xc = abs(grstat[cwin].plotrect.left - grstat[cwin].drawingrect.left) +
- xw/startcenter;
- yc = abs(grstat[cwin].drawingrect.bottom - grstat[cwin].plotrect.bottom) +
- yw/2.0;
- if (xc > yc)
- radius = 0.17 * xw ;
- else
- radius = 0.17 * yw;
-
- for (i = 0; i <= numgroup-1; i++)
- sum = sum + xdata[i];
- for (i = 0; i<= numgroup-1; i++){
- strcpy(percentstr,"");
- strcpy(numstr, "");
- xcenter = xc;
- ycenter = yc;
- SelectColor(gcolors[i]);
- setfillstyleXX(ghatch[i],gcolors[i]);
- startangle = endangle+1.0;
- if (i == 0) startangle = 0.0;
- endangle = (endangle + ((xdata[i]/sum) *360));
- midangle = (startangle+endangle) / 2.0;
- percent = (xdata[i]/sum)*100.0;
-
- if (val == 1)
- ConvertNum(xdata[i],0.0,sum,sum/180.0,0,numstr);
- if (per == 1) {
- sprintf(percentstr, "%*.1f", 1,percent);
- strcat(percentstr ,"%" );
- if (val==1){
- strcpy(tempstr, " ");
- strcat(tempstr, percentstr);
- strcpy(percentstr, tempstr );
- }
- }
- strcat(numstr,percentstr);
- if (startangle > 359.0) { startangle = 359.0;}
- if (endangle >= 360.0) { endangle = 360.0;}
- if (explodetrue[i]==1){
- xcenter = xc +
- ( explodepercent[i]*radius*cos(Twopi360*midangle));
- ycenter = yc +
- ( explodepercent[i]*AspectRatio*radius*sin(Twopi360*midangle));
- }
- xtitle =Round(xcenter+
- (radius*1.1*cos(Twopi360*midangle)));
- ytitle = Round(ycenter+
- (radius*1.1*AspectRatio*sin(Twopi360*midangle)));
-
-
- pieXX( xcenter,ycenter,startangle,endangle,radius,AspectRatio);
- if ((midangle > 90.0) && (midangle<= 270.0))
- settextjustifyXX(RIGHT_TEXT,CENTER_TEXT);
- if (pietype == 0) {
- ytitle = ytitle + 9.0 * ((midangle > 30) && (midangle < 150));
- outtextPie( xtitle,ytitle,titles[i]);
- outtextPie( xtitle,ytitle-9,numstr);
- } else
- outtextPie(xtitle,ytitle,numstr);
-
- settextjustifyXX(0,CENTER_TEXT);
- }
- if (pietype == 1)
- PieLegend(titles,numgroup,gcolors, ghatch);
- }
-
-
- void FindCMMinMax( float *cm, int rows,int columns,
- float *minZval, float *maxZval)
- {
- int i,j;
-
-
- *minZval = cm[0];
- *maxZval = cm[0];
- for ( i = 0; i < columns; i++ )
- for ( j = 0; j < rows; j++ ){
- if ( cm[i*columns+j] < *minZval)
- *minZval = cm[i*columns+j];
- if ( cm[i*columns+j] > *maxZval)
- *maxZval = cm[i*columns+j];
- }
- }
-
-
- void StringLegends(string80 *sv, int *GColors, int *GHatch, int n, int barLine){
-
- struct WorldRect a;
- int i;
- float charSizeX, charSizeY,xpos,ypos;
-
- settextjustifyXX( LEFT_TEXT, CENTER_TEXT);
- charSizeX = 1000.0 /((grstat[cwin].drawingrect.right
- - grstat[cwin].drawingrect.left) / 8);
- charSizeY = 1000.0 /(abs(grstat[cwin].drawingrect.top
- - grstat[cwin].drawingrect.bottom) / 8);
- SetWorldRect( &a, 0.0,0.0,1000.0,1000.0);
- SetWorldCoordinates(a.left, a.bottom, a.right, a.top);
-
- xpos = charSizeX + 10.0; ypos = 950.0 - charSizeY;
- for (i = 0; i <= n-1; i++ ){
- SelectColor(GColors[i]);
- if ( barLine == 0){
- MoveWorldAbs(xpos,ypos);
- setlinestyleXX(GHatch[i],0,1);
- LineWorldRel(2*charSizeX,0);
- }
- else
- BarWorld(xpos,ypos-0.75*charSizeY,1.5*charSizeY,2*charSizeX,
- GColors[i],GHatch[i]);
- MoveWorldAbs(xpos+3*charSizeX,ypos);
- outtextXX(sv[i]);
- xpos = xpos + 5*charSizeX + strlen(sv[i])*charSizeX;
- if ((i<n-1) &&
- ((xpos + 5*charSizeX + strlen(sv[i+1])*charSizeX) > 980.0))
- {
- xpos = charSizeX + 10.0;
- ypos = ypos - 2 * charSizeY;
- }
- }
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
-
- settextjustifyXX( LEFT_TEXT,CENTER_TEXT);
- }
-
- void RealLegends(float *rv, int *GColors, int *GHatch,
- int n, int barLine){
- int i;
- string80 *sv;
- string80 tempstr;
- int dec;
- float min,max;
-
- sv = (string80 *) calloc(n, sizeof(string80 ));
- FindMinMax(rv,n,&min,&max);
- for (i = 0; i <= n-1; i++ ){
- ConvertNum(rv[i],min,max,max-min,0,tempstr);
- strcpy(sv[i], tempstr);
- }
- StringLegends(sv,GColors, GHatch, n, barLine);
- }
-
-
- void ContourPlotLegends(float *cm,int rows,int columns,
- float contourInc,int *GColors, int *GHatch){
-
- float contourValue, minZ, maxZ;
- float *contourValues;
- int i;
-
- i = 0;
- FindCMMinMax(cm,rows, columns, &minZ, &maxZ);
- contourValue = minZ + contourInc;
- do {
- contourValue += contourInc;
- i += 1;
- } while (contourValue <= maxZ);
-
- /* Allocated for up to i contours */
- contourValues = (float *) calloc( i,sizeof(float ));
- i = 0;
- contourValue = minZ + contourInc;
- do {
- contourValues[i] = contourValue;
- contourValue += contourInc;
- i += 1;
- } while (contourValue <= maxZ);
- RealLegends(contourValues, GColors, GHatch, i, 0);
-
- }
-
-
-
- int CheckForContour(float *cm, int numcolumn,
- int j1,int i1,int j2,int i2,
- float minX,float xSpace,
- float minY,float ySpace,
- float contourZ,
- float *x, float *y)
- {
-
- int FunctionResult;
- float deltaX, deltaY, deltaZ;
-
- if ( ((cm[i1*numcolumn+j1] >= contourZ) &&
- (cm[i2*numcolumn+j2] <= contourZ)) ||
- ((cm[i1*numcolumn+j1] <= contourZ) &&
- (cm[i2*numcolumn+j2] >= contourZ)))
- FunctionResult = 1;
- else FunctionResult = 0;
- if ( FunctionResult== 1 ) {
- if ( (j2-j1)==1)
- deltaX = xSpace;
- else if ( (j2-j1)==-1 )
- deltaX = -xSpace;
- else deltaX = 0.0;
- if ( (i2-i1)==1 )
- deltaY = ySpace;
- else if ( (i2-i1)==-1 )
- deltaY = -ySpace;
- else deltaY = 0.0;
- deltaZ = cm[i2*numcolumn+j2] - cm[i1*numcolumn+j1];
- *x = minX + xSpace * j1 + (contourZ-cm[i1*numcolumn+j1]) * (deltaX/deltaZ);
- *y = minY + ySpace * i1 + (contourZ-cm[i1*numcolumn+j1]) * (deltaY/deltaZ);
-
-
- }
- return( FunctionResult );
- }
-
-
- void ContourPlot( float *cm,
- int rows, int columns,
- float contourInc,
- int *GColors, int *GHatch)
- {
- int i,j,k,contourCounter,numContours;
- float xpos,ypos,contourValue,minZ, maxZ;
- float minX, xSpace, minY, ySpace;
- float x[4],y[4];
- int contourFound[4];
- char gridLabel[16];
- struct WorldRect wr;
-
- minX = grstat[cwin].plotclip.left;
- xSpace = (grstat[cwin].plotclip.right- grstat[cwin].plotclip.left) /
- (columns - 1.0 ) ;
- minY = grstat[cwin].plotclip.bottom;
- ySpace = (grstat[cwin].plotclip.top- grstat[cwin].plotclip.bottom) /
- (rows - 1.0 ) ;
- SetWorldRect(&wr,grstat[cwin].plotclip.left,grstat[cwin].plotclip.bottom,
- grstat[cwin].plotclip.right,grstat[cwin].plotclip.top );
- SetGraphViewport(grstat[cwin].plotrect.left,grstat[cwin].plotrect.top,
- grstat[cwin].plotrect.right, grstat[cwin].plotrect.bottom);
- SetWorldCoordinates(wr.left, wr.bottom, wr.right, wr.top);
-
- contourCounter = 0;
- FindCMMinMax(cm,rows, columns, &minZ, &maxZ);
- contourValue = minZ + contourInc;
- do {
- setlinestyleXX(GHatch[contourCounter],1,1);
- SelectColor(GColors[contourCounter]);
- for ( i = 0; i <= rows-2; i++ ){
- for ( j = 0; j <= columns-2 ; j++ ){
-
- /*top*/ contourFound[0] = CheckForContour(cm,columns,j,i,j+1,i,
- minX, xSpace, minY, ySpace,
- contourValue,&x[0],&y[0]);
- /*right*/ contourFound[1] = CheckForContour(cm,columns,j+1,i,j+1,i+1,
- minX, xSpace, minY, ySpace,
- contourValue, &x[1],&y[1]);
- /*bottom*/ contourFound[2] = CheckForContour(cm,columns,j+1,i+1,j,i+1,
- minX, xSpace, minY, ySpace,
- contourValue, &x[2],&y[2]);
- /*left*/ contourFound[3] = CheckForContour(cm,columns,j,i+1,j,i,
- minX, xSpace, minY, ySpace,
- contourValue,&x[3],&y[3]);
- numContours = 0;
- for ( k = 0; k <= 3 ; k++ ){
- if ( contourFound[k]== 1 ){
- x[numContours] = x[k];
- y[numContours] = y[k];
- numContours += 1;
- }
- }
- switch ( numContours ){
- case 2:
- MoveWorldAbs(x[0],y[0]);
- LineWorldAbs(x[1],y[1]);
- break;
- case 3:
- MoveWorldAbs(x[0],y[0]);
- LineWorldAbs(x[2],y[2]);
- break;
- case 4:
- MoveWorldAbs(x[0],y[0]);
- LineWorldAbs(x[2],y[2]);
- MoveWorldAbs(x[1],y[1]);
- LineWorldAbs(x[3],y[3]);
- break;
- default: break;
- }
- }
- }
- contourValue += contourInc;
- contourCounter += 1;
- }while (contourValue <= maxZ);
- SetGraphViewport( grstat[cwin].drawingrect.left,
- grstat[cwin].drawingrect.top,
- grstat[cwin].drawingrect.right,
- grstat[cwin].drawingrect.bottom );
- SetWorldCoordinates(grstat[cwin].plotworld.left,
- grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right,
- grstat[cwin].plotworld.top);
- }
-
-
- void LabelPlotArea(float x,float y,char *GrLabel,int xjust,int yjust)
- {
- float xx1;
- float xx2;
- float yy1;
- float yy2;
- struct WorldRect a;
- struct WorldRect b;
-
- a = grstat[cwin].plotworld;
- b = grstat[cwin].plotclip;
- if ( grstat[cwin].LogX ) {
- xx1 = log10(grstat[cwin].plotclip.left);
- xx2 = log10(grstat[cwin].plotclip.right);
- x = log10(x);
- }
- else {
- xx1 = grstat[cwin].plotclip.left;
- xx2 = grstat[cwin].plotclip.right;
- }
- if ( grstat[cwin].LogY ) {
- yy1 = log10(grstat[cwin].plotclip.bottom);
- yy2 = log10(grstat[cwin].plotclip.top);
- y = log10(y);
- }
- else {
- yy1 = grstat[cwin].plotclip.bottom;
- yy2 = grstat[cwin].plotclip.top;
- }
- SetGraphAreaWorld(xx1,yy1,xx2,yy2);
- settextjustifyXX( xjust, yjust );
- MoveWorldAbs( x,y );
- outtextXX(GrLabel);
- grstat[cwin].plotworld = a;
- grstat[cwin].plotclip = b;
- settextjustifyXX( LEFT_TEXT, CENTER_TEXT );
- }
-
- void LabelGraphWindow(float x,float y,char *GrLabel,int xjust,int yjust)
- {
- float x1;
- float y1;
- struct WorldRect a;
-
- SetWorldRect( &a, 0.0,0.0,1000.0,1000.0);
- SetWorldCoordinates(a.left, a.bottom, a.right, a.top);
- settextjustifyXX( xjust, yjust );
- MoveWorldAbs( x, y );
- outtextXX( GrLabel );
- SetWorldCoordinates( grstat[cwin].plotworld.left, grstat[cwin].plotworld.bottom,
- grstat[cwin].plotworld.right, grstat[cwin].plotworld.top );
- settextjustifyXX( LEFT_TEXT, CENTER_TEXT );
-
- }
-
-
- void TitleXAxis(char *XTitle)
- {
- float x;
- float y;
- int font;
- int dir;
- int size;
-
- x = 500.0;
- y = 15.0;
- gettextstyleXX(&font,&dir,&size);
- settextstyleXX( font, 0,size );
- LabelGraphWindow( x,y, XTitle, 1,0);
- settextstyleXX( font, dir,size );
- }
-
- void TitleYAxis(char *YTitle)
- {
- float x;
- float y;
- int font;
- int dir;
- int size;
-
- x = 30.0;
- y = 500.0;
- gettextstyleXX(&font,&dir,&size);
- settextstyleXX( font, 1,size );
- LabelGraphWindow( x,y, YTitle, 1, 1 );
- settextstyleXX( font, dir,size );
-
- }
-
- void TitleWindow(char *GTitle)
- {
- float x;
- float y;
- int font;
- int dir;
- int size;
-
- x = 500.0;
- y = 980.0;
- gettextstyleXX(&font,&dir,&size);
- settextstyleXX( font, 0,size );
- LabelGraphWindow( x,y,GTitle,1,2);
- settextstyleXX( font, dir,size );
- }
-
-
- void InitSEGraphics(int cmode)
- {
- int GMX;
- int GMY;
- int x1;
- int x2;
- int y1;
- int y2;
- int i;
-
- BlackAndWhite = 0;
- if ((cmode == 7) || (cmode == 2) || (cmode == 3) || (cmode == 12))
- BlackAndWhite = 1;
- for (i=0; i<=10; i++)
- SetWorldRect(&grstat[i].win2plotratio,0.166,0.166,0.166,0.166);
- OneTimeInit(cmode);
-
- GetMaxCoords( &GMX,&GMY);
- AspectRatio = ((GMY*1.3)/(GMX*1.0));
-
- SetPercentWindow(0.1,0.1,0.90,0.90,0);
- SetWin2PlotRatio(0,0.15,0.12,0.05,0.12);
-
- SetPercentWindow(0.1,0.1,0.90,0.90,1);
- SetWin2PlotRatio(1,0.15,0.12,0.05,0.12);
-
- SetPercentWindow(0.01,0.01,0.99,0.99,2);
- SetWin2PlotRatio(2,0.14,0.12,0.05,0.12);
-
- SetPercentWindow(0.01,0.01,0.99,0.49,3);
- SetWin2PlotRatio(3,0.15,0.14,0.05,0.17);
-
- SetPercentWindow(0.01,0.501,0.99,0.99,4);
- SetWin2PlotRatio(4,0.15,0.14,0.05,0.17);
-
- SetPercentWindow(0.01,0.01,0.49,0.99,5);
- SetWin2PlotRatio(5,0.21,0.14,0.06,0.14);
-
- SetPercentWindow(0.501,0.01,0.99,0.99,6);
- SetWin2PlotRatio(6,0.21,0.14,0.06,0.14);
-
- SetPercentWindow(0.001,0.01,0.49,0.49,7);
- SetWin2PlotRatio(7,0.21,0.19,0.05,0.19);
-
- SetPercentWindow(0.501,0.01,0.99,0.49,8);
- SetWin2PlotRatio(8,0.21,0.19,0.05,0.19);
-
- SetPercentWindow(0.01,0.501,0.49,0.99,9);
- SetWin2PlotRatio(9,0.21,0.19,0.06,0.19);
-
- SetPercentWindow(0.501,0.501,0.99,0.99,10);
- SetWin2PlotRatio(10,0.21,0.18,0.05,0.18);
-
- ScalePlotArea(0.0,0.0,100.0,100.0);
- }
-
-
- void CloseSEGraphics()
- {
- closegraphics();
- }
-
-