2008-03-22 14:10:46 +01:00
|
|
|
/*************
|
|
|
|
|
* Header file for gnuplot.c
|
|
|
|
|
* 2008 Stefano Pedretti
|
|
|
|
|
************/
|
|
|
|
|
|
2013-01-23 20:57:32 +01:00
|
|
|
#ifndef ngspice_GNUPLOT_H
|
|
|
|
|
#define ngspice_GNUPLOT_H
|
2008-03-22 14:10:46 +01:00
|
|
|
|
2019-12-11 01:47:00 +01:00
|
|
|
void ft_gnuplot(double *xlims, double *ylims,
|
2020-06-30 23:23:19 +02:00
|
|
|
double xdel, double del,
|
2019-12-11 01:47:00 +01:00
|
|
|
const char *filename, const char *title,
|
|
|
|
|
const char *xlabel, const char *ylabel,
|
|
|
|
|
GRIDTYPE gridtype, PLOTTYPE plottype,
|
|
|
|
|
struct dvec *vecs);
|
2008-03-22 14:10:46 +01:00
|
|
|
|
|
|
|
|
|
2019-12-11 01:47:00 +01:00
|
|
|
void ft_writesimple(double *xlims, double *ylims,
|
|
|
|
|
const char *filename, const char *title,
|
|
|
|
|
const char *xlabel, const char *ylabel,
|
|
|
|
|
GRIDTYPE gridtype, PLOTTYPE plottype,
|
|
|
|
|
struct dvec *vecs);
|
2008-03-22 14:10:46 +01:00
|
|
|
|
|
|
|
|
#endif
|