How to draw plotmatrix in logscale?
22 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
更多回答(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');
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!