home *** CD-ROM | disk | FTP | other *** search
- #define maxContours 60
- typedef char string80[80];
- typedef char string20[80];
-
- 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;
-
- void SetWin2PlotRatio( int win, float l, float t, float r, float b);
- void SetRect(struct viewporttype *r,int xx1,int yy1,int xx2,int yy2);
- void SetGraphAreaWorld(float a,float b,float c,float d);
- void SetGraphWindow();
- void SetCurrentWindow(int win);
- float PowerCalc(float realnum,float power);
- float log10x(float realnum);
- float logx(float realnum);
- int NumExp(float realnum);
- void FindMinMax(float *dataset,int numdat,float *minval,float *maxval);
- void SortData(float *x,float *y,int n,int d);
- void SortDataX(float *x,float *y,int n,int d);
- void SortDataY(float *x,float *y,int n,int d);
- void SetAxesType(int PlotTypeX,int PlotTypeY);
- void DefGraphWindow(int xx1,int yy1,int xx2,int yy2,int win);
- void SetPercentWindow( float x1,float y1,float x2,float y2, int win );
- void BorderCurrentWindow( int c );
- void SetViewBackground( int c );
- void SetPlotBackground( int c );
- void ScaleLogX(float xx1,float xx2);
- void ScaleLogY(float yy1,float yy2);
- void ScaleLinX(float xx1,float xx2);
- void ScaleLinY(float yy1,float yy2);
- void ScalePlotArea(float xx1,float yy1,float xx2,float yy2);
- void ClearWindow();
- void ClearGraph();
- void SetXYIntercepts(float xx1,float yy1);
- void DrawXAxis(float TicSpace,int dir);
- void DrawYAxis(float TicSpace,int dir);
- void ConvertNum(float innum,float a1,float a2,float TicSpace,
- char LogFlag, char *outstr);
- void LabelXAxWithStrings(int NthTic,string80 *TicStrings,
- int NumStrings,int dir);
- void LabelXAxis(int NthTic,int dir);
- void LabelYAxis(int NthTic,int dir);
- void DrXLinGrid(int NthTic);
- void DrYLinGrid(int NthTic);
- void DrYLogGrid(int NthTic);
- void DrXLogGrid(int NthTic);
- void DrawGridX(int NthTic);
- void DrawGridY(int NthTic);
- void DrawGrid(int NthTic);
- void RoundAxes(float *a1,float *a2,float *tics);
- void AutoAxes(float *datasetx,float *datasety,int numdat,int AxFlag);
- void PrePlot(float *datasetx,float *datasety,int numdat);
- void CopyVectors(float *x, int n, float *x1);
- void PostPlot();
- void LinePlotData(float *datasetx,float *datasety,int numdat,
- int color,int linestyle);
- void BargraphData(float *datasetx, float *datasety,
- int numdat,float width,int color,int HatchStyle);
- void PlotErrorBars(float *datasetx, float *datasety1,
- float *datasety2,int numdat,int color, float width);
- void ScatterPlotData(float *datasetx,float *datasety,int numdat,int color, int marktype);
- void GroupPlotData(float *datasetx,float *GroupData,int numdat,int numgroup,
- int GraphType,float width,int *gc,int *gh);
- void PieChart( float *xdata, int numgroup, int *gcolors, int *ghatch,
- string80 *titles, int pietype, int val, int per,
- int *explodetrue, float *explodepercent );
- void FindCMMinMax( float *cm, int rows,int columns,
- float *minZval, float *maxZval);
- void StringLegends(string80 *sv, int *GColors, int *GHatch, int n, int barLine);
- void RealLegends(float *rv, int *GColors, int *GHatch, int n, int barLine);
- void ContourPlotLegends(float *cm,int rows,int columns,
- float contourInc,int *GColors, int *GHatch);
- 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);
- void ContourPlot( float *cm,
- int rows, int columns,
- float contourInc,
- int *GColors, int *GHatch);
- void LabelPlotArea(float x,float y,char *GrLabel,int xjust,int yjust);
- void LabelGraphWindow(float x,float y,char *GrLabel,int xjust,int yjust);
- void TitleXAxis(char *XTitle);
- void TitleYAxis(char *YTitle);
- void TitleWindow(char *GTitle);
- void InitSEGraphics(int cmode);
- void CloseSEGraphics();
-