2008-03-22 14:10:46 +01:00
|
|
|
/*************
|
|
|
|
|
* Header file for gnuplot.c
|
|
|
|
|
* 2008 Stefano Pedretti
|
|
|
|
|
************/
|
|
|
|
|
|
|
|
|
|
#ifndef GNUPLOT_H_INCLUDED
|
|
|
|
|
#define GNUPLOT_H_INCLUDED
|
|
|
|
|
|
|
|
|
|
void ft_gnuplot(double *xlims, double *ylims, char *filename, char *title,
|
|
|
|
|
char *xlabel, char *ylabel, GRIDTYPE gridtype, PLOTTYPE plottype,
|
|
|
|
|
struct dvec *vecs);
|
|
|
|
|
|
|
|
|
|
|
2010-02-27 22:11:30 +01:00
|
|
|
void ft_writesimple(double *xlims, double *ylims, char *filename, char *title,
|
|
|
|
|
char *xlabel, char *ylabel, GRIDTYPE gridtype, PLOTTYPE plottype,
|
|
|
|
|
struct dvec *vecs);
|
2008-03-22 14:10:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|