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.
23 lines
635 B
23 lines
635 B
/*************
|
|
* Header file for gnuplot.c
|
|
* 2008 Stefano Pedretti
|
|
************/
|
|
|
|
#ifndef ngspice_GNUPLOT_H
|
|
#define ngspice_GNUPLOT_H
|
|
|
|
void ft_gnuplot(double *xlims, double *ylims,
|
|
double xdel, double del,
|
|
const char *filename, const char *title,
|
|
const char *xlabel, const char *ylabel,
|
|
GRIDTYPE gridtype, PLOTTYPE plottype,
|
|
struct dvec *vecs, bool xycontour);
|
|
|
|
|
|
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
|