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개)

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?

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by