How to draw plotmatrix in logscale?
显示 更早的评论
I want to draw plotmatrix, including 7 parameters, in logscale.
>> plotmatrix(data)
>> set(gca,'xscale','log');
>> set(gca,'yscale','log');
did not work.
Is there some solutions for this?
Thanks.
采纳的回答
更多回答(1 个)
Azzi Abdelmalek
2012-11-22
编辑:Azzi Abdelmalek
2012-11-22
data=magic(5)
[h,ax,B,P]=plotmatrix(data)
set(ax,'xscale','log');
set(ax,'yscale','log');
类别
在 帮助中心 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!