Changing spectrogram frequency axis to velocity axis
2 次查看(过去 30 天)
显示 更早的评论
Hi,
I have generated some spectrograms and i want to display 'velocity' instead of 'frequency' on y-axis. Sample code is given below. My wavelength is 0.0039 meters. How can i do this? Kindly guide
load('data.mat');
x = sum(data/max(max(abs(data)))); %normalizing bw 0 and 1 and summing across rows
figure();
c=jet(256);colormap(c);
spectrogram(x,hanning(512),487,1024,12.4e3,'centered','yaxis','MinThreshold',-50);
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time-Frequency Analysis 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!