Contourf plot Yscale log2 vs log10

4 次查看(过去 30 天)
I have frequencies ranging from 2-194 in a base-2 logarithmic spacing (10 voices per octave) like this:
frex = 2.^([10:76]/10);
I want to plot a spectrogram with contourf using them and make the yaxis logarithmically scaled. I know that the below command does this for base-10 log, but how can I do it for base-2 log? I saw some other questions asking similar, but I don't think the answers actually changed the scale of the y-axis. One person said that log10 and log2 scale shape will be the same. Is that correct?
set(gca,'YScale','log')

采纳的回答

Star Strider
Star Strider 2022-7-14
You can change the base of the logarithm by dividing it by the desired base, then use the appropriate code to change the tick labels:
frex = 2.^((10:76)/10)
frex = 1×67
2.0000 2.1435 2.2974 2.4623 2.6390 2.8284 3.0314 3.2490 3.4822 3.7321 4.0000 4.2871 4.5948 4.9246 5.2780 5.6569 6.0629 6.4980 6.9644 7.4643 8.0000 8.5742 9.1896 9.8492 10.5561 11.3137 12.1257 12.9960 13.9288 14.9285
frex2 = log(frex)/log(2)
frex2 = 1×67
1.0000 1.1000 1.2000 1.3000 1.4000 1.5000 1.6000 1.7000 1.8000 1.9000 2.0000 2.1000 2.2000 2.3000 2.4000 2.5000 2.6000 2.7000 2.8000 2.9000 3.0000 3.1000 3.2000 3.3000 3.4000 3.5000 3.6000 3.7000 3.8000 3.9000
N = 1024;
n = 0:N-1;
w0 = 2*pi/5;
x = sin(w0*n)+10*sin(2*w0*n);
% Compute the short-time Fourier transform using the function defaults. Plot the spectrogram.
figure
spectrogram(x,'yaxis');
figure
spectrogram(x,'yaxis')
Ax = gca;
yt = Ax.YTick;
Ax.YTickLabel = log(yt)/log(2);
This example is from the spectrogram documentation, with my changes to the y-axis labels.
.
  6 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Distribution Plots 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by