我正在尝试使用aquaterm设置Octave来绘制我的结果。我已使用brew
成功安装了所有内容。
当我尝试使用以下内容绘制内容时:
x = -10:0.1:10;
plot (x, sin (x));
Aquaterm打开但我看不到任何结果:根本就没有窗口,屏幕上没有任何内容呈现。
但是我可以看到gnuplot
正在使用:
set terminal png
set output 'testimage.png'
plot sin(x)
exit
这里我写了正确的testimage.png文件并正确绘制了正弦函数。
是否需要使用aquaterm在屏幕上呈现结果所需的特定设置?
以下是我.octaverc
的内容:
set terminal png
set output 'testimage.png'
plot sin(x)
exit
我正在使用Yosemite 10.10.2
答案 0 :(得分:2)
查看(八度内)setenv("GNUTERM", "aqua")
或在您的情况下setenv ("GNUTERM", "png")
基本上,GNUTERM环境变量的内容通过类似于“set terminal”的调用传递给gnuplot