【发布时间】:2013-05-04 04:55:13
【问题描述】:
compass(x,y);
如何将这张图片中的 2.5 修复为 10。
【问题讨论】:
-
你用的是什么 Matlab 版本?
标签: matlab
compass(x,y);
如何将这张图片中的 2.5 修复为 10。
【问题讨论】:
标签: matlab
这里有一个解决方法: 首先添加一条具有您想要的限制的恒定半径线,然后使其不可见:
Z = eig(randn(20,20));
h = compass(10 * ones(size(Z)));
set(h, 'Visible', 'off')
然后添加你真正想要绘制的数据:
hold on
compass(Z)
【讨论】: