2011-12-11 19:05:00 +01:00
|
|
|
#include "ngspice/ngspice.h"
|
2000-06-16 21:04:15 +02:00
|
|
|
|
2011-12-11 19:05:00 +01:00
|
|
|
#include "ngspice/bool.h"
|
|
|
|
|
#include "ngspice/wordlist.h"
|
2000-06-16 21:04:15 +02:00
|
|
|
|
|
|
|
|
#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);
|
2000-06-16 21:04:15 +02:00
|
|
|
}
|
2008-08-27 15:39:05 +02:00
|
|
|
|
|
|
|
|
#ifdef TCL_MODULE
|
|
|
|
|
void
|
|
|
|
|
com_bltplot(wordlist *wl)
|
|
|
|
|
{
|
2011-04-28 17:59:36 +02:00
|
|
|
plotit(wl, NULL, "blt");
|
2008-08-27 15:39:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|