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.

 采纳的回答

AX = findobj('type','axes');
set(AX,'yscale','log','xscale','log')

更多回答(1 个)

data=magic(5)
[h,ax,B,P]=plotmatrix(data)
set(ax,'xscale','log');
set(ax,'yscale','log');

2 个评论

Thank you. It worked but too heavy for my PC to treat thousand of data points.
What does that mean?

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by