2000-05-13 12:29:25 +02:00
|
|
|
/*************
|
|
|
|
|
* Header file for agraf.c
|
|
|
|
|
* 1999 E. Rouat
|
|
|
|
|
************/
|
|
|
|
|
|
2013-01-22 21:00:29 +01:00
|
|
|
#ifndef ngspice_AGRAF_H
|
|
|
|
|
#define ngspice_AGRAF_H
|
2000-05-13 12:29:25 +02:00
|
|
|
|
2011-12-11 19:05:00 +01:00
|
|
|
#include "ngspice/dvec.h"
|
|
|
|
|
#include "ngspice/bool.h"
|
|
|
|
|
#include "ngspice/plot.h"
|
2000-05-13 12:29:25 +02:00
|
|
|
|
|
|
|
|
void ft_agraf(double *xlims, double *ylims, struct dvec *xscale,
|
2012-09-20 20:30:53 +02:00
|
|
|
struct plot *plot, struct dvec *vecs,
|
|
|
|
|
double xdel, double ydel, bool xlog, bool ylog,
|
|
|
|
|
bool nointerp);
|
2000-05-13 12:29:25 +02:00
|
|
|
|
|
|
|
|
#endif
|