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.

 採用された回答

Matt Fig
Matt Fig 2012 年 11 月 22 日

1 投票

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

1 件のコメント

Satoshi Fujii
Satoshi Fujii 2012 年 11 月 22 日
Thank you so much. It worked!!

サインインしてコメントする。

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 22 日
編集済み: Azzi Abdelmalek 2012 年 11 月 22 日

1 投票

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.
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 22 日
What does that mean?

サインインしてコメントする。

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by