Changing spectrogram frequency axis to velocity axis
조회 수: 1 (최근 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!