How to draw plotmatrix in logscale?
Ältere Kommentare anzeigen
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.
Akzeptierte Antwort
Weitere Antworten (1)
Azzi Abdelmalek
am 22 Nov. 2012
Bearbeitet: Azzi Abdelmalek
am 22 Nov. 2012
data=magic(5)
[h,ax,B,P]=plotmatrix(data)
set(ax,'xscale','log');
set(ax,'yscale','log');
Kategorien
Mehr zu Annotations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!