"Fossies" - the Fresh Open Source Software Archive

Member "statist-1.4.2/src/plot.h" (7 Sep 2006, 1700 Bytes) of package /linux/privat/old/statist-1.4.2.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "plot.h" see the Fossies "Dox" file reference documentation.

    1 /* This file is part of statist
    2 **
    3 ** It is distributed under the GNU General Public License.
    4 ** See the file COPYING for details.
    5 **
    6 ** (c) 1997 Dirk Melcher
    7 **  Doerper Damm 4
    8 **  49134 Wallenhorst
    9 **  GERMANY
   10 **  Tel. 05407/7636
   11 **  email: Dirk.Melcher@usf.Uni-Osnabrueck.DE
   12 **
   13 ***************************************************************/
   14 
   15 /* plot.h fuer STATIST */
   16 
   17 extern BOOLEAN init_gnuplot();
   18 extern BOOLEAN plot_pair(REAL x[], REAL y[], int n, REAL a0, REAL a1,
   19           char *xlab, char *ylab);
   20 extern BOOLEAN plot_tripl(REAL x[], REAL y[], REAL z[], int n,
   21                    REAL a0, REAL a1, REAL a2,
   22            char *xlab, char *ylab, char *zlab);
   23 extern BOOLEAN plot_histo(REAL x[], int y[], int n, REAL step, REAL data[],
   24               char *datalab);
   25 extern BOOLEAN plot_histo_discrete(REAL x[], int y[], int n, REAL step, REAL data[],
   26               char *datalab);
   27 extern BOOLEAN plot_probit(REAL dose[], REAL num[], REAL effect[], int n,
   28                            REAL a0, REAL a1, REAL dose0, REAL dose1,
   29                char *doselab, char *effectlab);
   30 extern BOOLEAN plot_poly(REAL x[], REAL y[], int n, REAL a[], int npoly,
   31              char *xlab, char *ylab);
   32 extern BOOLEAN plot_box(REAL x[], int n, REAL median, REAL mean, REAL q_l,
   33                         REAL q_u, REAL w_l, REAL w_u, REAL no_l,
   34             REAL no_u, char *xlab);
   35 BOOLEAN plot_cdf_ks(REAL z[], int n, REAL z0, REAL fn1, REAL fn2, REAL x[],
   36          char *xlab);
   37 BOOLEAN plot_cdf(REAL z[], int n, char *xlab);
   38 
   39 #ifndef MSDOS
   40 extern void save_png();
   41 extern BOOLEAN plot_command();
   42 #endif
   43 
   44 extern char GPL_DAT[];
   45 extern int histsize; /* number of last gnuplot commands to memorize */
   46 extern char **plothist;
   47 extern char *gnuplot_charset;
   48 extern BOOLEAN has_graph;