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.
13 lines
325 B
13 lines
325 B
/*************
|
|
* Header file for xgraph.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_XGRAPH_H
|
|
#define ngspice_XGRAPH_H
|
|
|
|
void ft_xgraph(double *xlims, double *ylims, char *filename, char *title,
|
|
char *xlabel, char *ylabel, GRIDTYPE gridtype, PLOTTYPE plottype,
|
|
struct dvec *vecs);
|
|
|
|
#endif
|