本文介绍了八度不绘制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我尝试在GNU Octave上绘制图形并尝试使用plot时,它会为我提供以下输出
When I try to plot a graph on GNU Octave, and try to use plot, it gives me the following output
set terminal aqua enhanced title "Figure 1" size 560 420 font "*,6" dashlength 1
^
line 0: unknown or ambiguous terminal type; type just 'set terminal' for a list
我正在使用Mac OS X 10.9.2.我尝试使用
I am using Mac OS X 10.9.2.I have tried using
octave:79> setenv("GNUTERM","X11")
但我仍然遇到相同的错误.
but I still get the same error.
推荐答案
setenv("GNUTERM","qt")
在八度命令提示符下,它应该可以解决问题.
setenv("GNUTERM","qt")
in your octave command prompt, it should solve the problem.
这篇关于八度不绘制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!