Add a semilogx axis to a plot given by a function

1 view (last 30 days)
I am using the function obw() to plot occupied bandwidth with the code:
obw(signal, fs);
It plot it on a normal frequency linar scale and I would like to plot it with a log x-axis (like when you use the function semilogx(). How can I do this? Thanks heaps!

Accepted Answer

Walter Roberson
Walter Roberson on 26 Oct 2015
set(gca,'XScale', 'log')
  2 Comments
Butterflyfish
Butterflyfish on 26 Oct 2015
Edited: Butterflyfish on 26 Oct 2015
Thank you very much Walter! It worked. I wanted to add minor ticks and so did:
set(gca,'XMinorTick','on')
But that doesn't work. Any hints why?
EDIT: I found out that this problem disappear when I remove the change of font size that I had set up... not sure why but I don't mind!

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!