2000-07-18 20:07:16 +02:00
|
|
|
#include <config.h>
|
|
|
|
|
#include <ngspice.h>
|
2000-06-16 21:04:15 +02:00
|
|
|
|
|
|
|
|
#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);
|
2000-06-16 21:04:15 +02:00
|
|
|
return;
|
|
|
|
|
}
|
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
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|