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.
18 lines
420 B
18 lines
420 B
/*************
|
|
* Header file for agraf.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_AGRAF_H
|
|
#define ngspice_AGRAF_H
|
|
|
|
#include "ngspice/dvec.h"
|
|
#include "ngspice/bool.h"
|
|
#include "ngspice/plot.h"
|
|
|
|
void ft_agraf(double *xlims, double *ylims, struct dvec *xscale,
|
|
struct plot *plot, struct dvec *vecs,
|
|
double xdel, double ydel, bool xlog, bool ylog,
|
|
bool nointerp);
|
|
|
|
#endif
|