3
compass(x,y);

我如何将这张图片中的 2.5 修复为 10。

在此处输入图像描述

4

1 回答 1

4

这是一种解决方法:首先添加一条具有您想要的限制的恒定半径线,然后使其不可见:

Z = eig(randn(20,20));
h = compass(10 * ones(size(Z)));
set(h, 'Visible', 'off')

然后添加您实际要绘制的数据:

hold on
compass(Z)

在此处输入图像描述

于 2013-05-04T05:08:13.503 回答