为什么带有绘图的图形窗口没有保持打开状态

时间:2019-06-14 14:19:07

标签: image octave

我正在尝试遵循从here摘录的代码:

x = -10:0.1:10; # Create an evenly-spaced vector from -10..10
y = sin (x);    # y is also a vector
plot (x, y);
title ("Simple 2-D Plot");
xlabel ("x");
ylabel ("sin (x)");

它运行时,图形窗口会短暂出现,几乎立即消失。该程序结束时没有任何消息,警告或错误。

我正在使用Gnu Octave版本4.0.3开发Debian Stable Linux。

问题出在哪里,如何正确显示绘图?

0 个答案:

没有答案