spectrogram having as input a vector F
1 次查看(过去 30 天)
显示 更早的评论
The variant of spectrogram with an input vector F?
[S,freq,time, P]= spectrogram(x, 128,64, 2:0.1:30, 512)?
The estimation of S (and P) are achieved using what method? What is the principle behind the calculations ?
0 个评论
回答(1 个)
Asvin Kumar
2020-4-12
The spectrogram function computes the Short-Time Fourier Transform (STFT).
The STFT will be computed at frequencies (in Hz) specified by the values in ‘f’ when called with the form:
[s,f,t,p] = spectrogram(x,window,noverlap,f,fs)
The principal in this form is the same as the principal in all the other forms of the function.
另请参阅
类别
在 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!