How to make the x-axis on a logarithmic scale while keeping the y-axis in dB?
Mostrar comentarios más antiguos
Hello,
I have calculated the PSD of my signal in dB.
lets say,
f=frequency
Nc= (PSD)Power spectral density in dB
plot(f,Nc);
Now, I would like to change the x-axis to logarithmic scale while keeping the y-axis in dB and plot it. Could you please tell me how to do that?
Thanks
Gaurav
Respuesta aceptada
Más respuestas (2)
Sean de Wolski
el 25 de Abr. de 2012
Wayne's method is probably best. However, if you need finer control you can set the axes' xscale property to log.
h = axes;
set(h,'xscale','log')
gaurav Nanda
el 25 de Abr. de 2012
0 votos
Categorías
Más información sobre Spectral Estimation 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!