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.

 Réponse acceptée

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

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 22 Nov 2012
Modifié(e) : Azzi Abdelmalek le 22 Nov 2012
data=magic(5)
[h,ax,B,P]=plotmatrix(data)
set(ax,'xscale','log');
set(ax,'yscale','log');

2 commentaires

Satoshi Fujii
Satoshi Fujii le 22 Nov 2012
Thank you. It worked but too heavy for my PC to treat thousand of data points.
Azzi Abdelmalek
Azzi Abdelmalek le 22 Nov 2012
What does that mean?

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by