ngspice/src/frontend/plotting/gnuplot.h

23 lines
586 B
C
Raw Normal View History

/*************
* Header file for gnuplot.c
* 2008 Stefano Pedretti
************/
2013-01-23 20:57:32 +01:00
#ifndef ngspice_GNUPLOT_H
#define ngspice_GNUPLOT_H
void ft_gnuplot(double *xlims, double *ylims,
const char *filename, const char *title,
const char *xlabel, const char *ylabel,
GRIDTYPE gridtype, PLOTTYPE plottype,
struct dvec *vecs);
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);
#endif