From: <ku...@us...> - 2003-02-06 01:31:23
|
Update of /cvsroot/basedb/basedb/plugins/src/pca In directory sc8-pr-cvs1:/tmp/cvs-serv19204 Modified Files: Makefile.am Added Files: gnuplot_i.c Log Message: Forced to duplicate gnuplot_i.c for backward autoconf compatibility. --- NEW FILE: gnuplot_i.c --- /*-------------------------------------------------------------------------*/ /** @file gnuplot_i.c @author N. Devillard @date Sep 1998 @version $Revision: 1.1 $ @brief C interface to gnuplot. gnuplot is a freely available, command-driven graphical display tool for Unix. It compiles and works quite well on a number of Unix flavours as well as other operating systems. The following module enables sending display requests to gnuplot through simple C calls. */ /*--------------------------------------------------------------------------*/ /* [...682 lines suppressed...] char title_str[GP_TITLE_SIZE] ; if (title == NULL) { strcpy(title_str, "no title") ; } else { strcpy(title_str, title) ; } if (h->nplots > 0) { strcpy(plot_str, "replot") ; } else { strcpy(plot_str, "plot") ; } sprintf(cmd, "%s %s title \"%s\" with %s", plot_str, equation, title_str, h->pstyle) ; gnuplot_cmd(h, cmd) ; h->nplots++ ; return ; } Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/pca/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 6 Feb 2003 00:43:35 -0000 1.2 --- Makefile.am 6 Feb 2003 01:31:20 -0000 1.3 *************** *** 3,7 **** bin_PROGRAMS = pca ! pca_SOURCES = PCA_v01.c gnuplot_i-2.6/src/gnuplot_i.c pca_LDADD = $(GSL_LIB) $(BLAS_LIB) --- 3,7 ---- bin_PROGRAMS = pca ! pca_SOURCES = PCA_v01.c gnuplot_i.c pca_LDADD = $(GSL_LIB) $(BLAS_LIB) |