问题描述
我在全新的 Windows 10 安装上使用 Octave 4.0.0,图形工具包相关功能(例如 plot()
或 hist()
)很简单不工作.plot()
创建一个新窗口,该窗口在 GUI 中立即冻结,而在 CLI 中根本没有窗口(两种情况下 Octave 都会崩溃).我确保将 graphics_toolkit()
设置为 "gnuplot"
而不是 "fltk"
,但我没有看到任何改进.有什么建议吗?
I'm using Octave 4.0.0 on a fresh Windows 10 installation and the graphics toolkit related functions (such as plot()
or hist()
) are simply not working. plot()
creates a new window that freezes immediately in the GUI and no windows at all in the CLI (Octave crashes in both cases). I made sure that graphics_toolkit()
was set to "gnuplot"
and not "fltk"
, but I did not see any improvment. Any suggestion?
推荐答案
第一次使用plot
,imagesc
,或者其他使用绘图功能的东西会导致八度音暂停一段时间(可能是几分钟).最初使用 plot([1 2 3 4])
绘制一个小数据集可能会更快.
The first time you use plot
, imagesc
, or something else that uses plotting functions it will cause Octave to hang for a while (potentially minutes). It may be quicker to plot a small dataset with plot([1 2 3 4])
initially.
在初始情节之后,后续情节应该很快,即使您重新打开 Octave 或重新启动计算机.
After the initial plot, subsequent ones should be quick, even if you reopen Octave or reboot your computer.
这种情况在使用 Octave 4.0.0
-4.0.2
时始终如一地发生,并且可能在 Windows 10 上的其他版本中发生.
This happens consistently using Octave is 4.0.0
-4.0.2
, and potentially in other versions on Windows 10.
这篇关于Windows 10 下无法使用 Octave 4.0.0 图形工具包功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!