Gnuplot:取消设置变量

Gnuplot: unset variable

我想这是一个非常基本的问题,但是 Google 和文档都没有帮到我这么大的忙:是否可以取消定义变量? 这样

a = 0
[some operation]
print(exists("a"))

导致 0 被打印。

你要找的是undefine:

gnuplot> print a           
         undefined variable: a

gnuplot> print(exists("a"))
0
gnuplot> a=10
gnuplot> print a           
10
gnuplot> print(exists("a"))
1
gnuplot> undefine a
gnuplot> print a           
         undefined variable: a

gnuplot> print(exists("a"))
0
gnuplot>