ngspice/src/frontend/com_plot.c

30 lines
382 B
C
Raw Normal View History

#include <config.h>
#include <ngspice.h>
#include <bool.h>
#include <wordlist.h>
#include "plotting/plotit.h"
#include "com_plot.h"
/* plot name ... [xl[imit]] xlo xhi] [yl[imit ylo yhi] [vs xname] */
void
com_plot(wordlist *wl)
{
2011-04-28 17:59:36 +02:00
plotit(wl, NULL, NULL);
return;
}
#ifdef TCL_MODULE
void
com_bltplot(wordlist *wl)
{
2011-04-28 17:59:36 +02:00
plotit(wl, NULL, "blt");
return;
}
#endif