0
我想用aquaterm設置Octave來繪製我的結果。我已成功安裝了所有與brew
。Octave + aquaterm:繪圖不起作用
當我嘗試使用繪製的東西:
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
10.10.2