MATLAB: How to draw plotmatrix in logscale

plotmatrix

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.

Best Answer

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