You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
513 B
19 lines
513 B
/*************
|
|
* 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);
|
|
|
|
|
|
void ft_writesimple(double *xlims, double *ylims, char *filename, char *title,
|
|
char *xlabel, char *ylabel, GRIDTYPE gridtype, PLOTTYPE plottype,
|
|
struct dvec *vecs);
|
|
|
|
|
|
#endif
|