相关疑难解决方法(0)

Octave-Gnuplot-AquaTerm错误:设置终端aqua增强标题"图1"......未知终端类型"

我通过Homebrew安装了Octave和gnuplot,并下载了AquaTerm.dmg.当我尝试绘图时,我收到以下消息:

octave:4> plot(x,y)

gnuplot> set terminal aqua enhanced title "Figure 1" font "*,6"

                  ^
     `line 0: unknown or ambiguous terminal type; type just 'set terminal' for a list`
Run Code Online (Sandbox Code Playgroud)

在bash终端set terminal,set Terminal,set term,(和相同的,其次是"AQUA"太)等给予什么.我已经尝试从八度音阶再次绘制"AquaTerm"已经打开,但没有.我已经尝试直接从gnuplot绘图,但同样的问题..我怎么能这样做"设置终端aqua"?

Gnuplot启动消息说" Terminal type set to 'x11'"但不知道如何更改它,以前的命令也不起作用.

由于AquaTerm没有从Homebrew安装,也许octave/gnupot找不到它......但不知道.有什么猜测?谢谢!

x11 terminal homebrew gnuplot octave

133
推荐指数
12
解决办法
7万
查看次数

MATLAB - 轴相等并且同时拉伸填充?

默认情况下,stretch-to-fill处于打开状态。所以

pixels = ones(100,100)
image(pixels);
colormap([0 0 0; 1 1 1]);
Run Code Online (Sandbox Code Playgroud)

产生

在此输入图像描述

强制轴具有相同的比例,这

pixels = ones(100,100)
image(pixels);
colormap([0 0 0; 1 1 1]);
axis equal;
Run Code Online (Sandbox Code Playgroud)

产生

在此输入图像描述

显然,stretch-to-fill被 覆盖axis equal。怎样做才能让它们共存?

matlab plot image aspect-ratio matlab-figure

2
推荐指数
1
解决办法
1436
查看次数

标签 统计

aspect-ratio ×1

gnuplot ×1

homebrew ×1

image ×1

matlab ×1

matlab-figure ×1

octave ×1

plot ×1

terminal ×1

x11 ×1