Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
|
|
Re: ploting in db
Posted:
Mar 19, 2013 1:05 PM
|
|
"Yousef " <yayatoure@hotmail.com> wrote in message news:kia1ui$9hl$1@newscl01ah.mathworks.com... > Hi Guys, > > Can anybody help me to change my y-axis to (db) logarithmic scale.. > part of my code looks like: > > > c=sqrt(abs(data(:,2)).^2 + abs(data(:,3)).^2); > b=data(:,1); > tmp=folderContents(i,:); > plot(b,c,'red'); > BUT: I do not want to choose some commands like semilogy, loglog ...etc > Tanks in advance for your help.......
SET the YScale property of your axes to 'log' and it will change to logarithmic scale.
http://www.mathworks.com/help/matlab/ref/axes_props.html#XScale
-- Steve Lord slord@mathworks.com To contact Technical Support use the Contact Us link on http://www.mathworks.com
|
|
|
|