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.
29 lines
409 B
29 lines
409 B
#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)
|
|
{
|
|
plotit(wl, (char *) NULL, (char *) NULL);
|
|
return;
|
|
}
|
|
|
|
#ifdef TCL_MODULE
|
|
void
|
|
com_bltplot(wordlist *wl)
|
|
{
|
|
plotit(wl, (char *) NULL, "blt");
|
|
return;
|
|
}
|
|
|
|
#endif
|
|
|