How to draw plotmatrix in logscale?
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 22 de Nov. de 2012
Editada: Azzi Abdelmalek
el 22 de Nov. de 2012
data=magic(5)
[h,ax,B,P]=plotmatrix(data)
set(ax,'xscale','log');
set(ax,'yscale','log');
2 comentarios
Satoshi Fujii
el 22 de Nov. de 2012
Azzi Abdelmalek
el 22 de Nov. de 2012
What does that mean?
Categorías
Más información sobre MATLAB Coder en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!