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 5:25 PM
|
|
"dpb" <none@non.net> wrote in message news:kiaaa6$s4e$1@speranza.aioe.org... > On 3/19/2013 12:05 PM, Steven_Lord wrote: >> >> >> "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); > ... > > Steven answered the axis question,
Yes, I did focus on that piece and didn't look at the code.
> I'll simply note that the above can be written more succinctly as > > c=abs(complex(data(:,2),data(:,3))); > > The abs() in your expression are purely superfluous since squaring a value > makes it positive.
Even more succinctly, you can probably just replace this with a call to HYPOT.
http://www.mathworks.com/help/matlab/ref/hypot.html
-- Steve Lord slord@mathworks.com To contact Technical Support use the Contact Us link on http://www.mathworks.com
|
|
|
|