我使用Homebrew在OSX 10.11.1中安装了Octave。当我运行以下代码时:
plot(x,y);
事实证明:
gnuplot> set terminal aqua enhanced title "Figure 1" font "*,6.66667" dashlength 1
^
line 0: unknown or ambiguous terminal type; type just 'set terminal' for a list
WARNING: Plotting with an 'unknown' terminal.
No output will be generated. Please select a terminal with 'set terminal'.
但是,实际上,我先用aqua安装了gnuplot。我在Octave中设置了setenv('GNUTERM','aqua')
。
当我输入gnuplot时,在输入set term
后,它会显示带有aqua
的列表。
所以,我对这个问题很困惑。这个aqua怎么不起作用?