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.

采纳的回答

Matt Fig
Matt Fig 2012-11-22
AX = findobj('type','axes');
set(AX,'yscale','log','xscale','log')

更多回答(1 个)

Azzi Abdelmalek
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');
  2 个评论
Satoshi Fujii
Satoshi Fujii 2012-11-22
Thank you. It worked but too heavy for my PC to treat thousand of data points.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by