How to plot PSD in MATLAB of given ascii value?
5 ビュー (過去 30 日間)
古いコメントを表示
Hello Everybody,
I am very new in MATLAB. I am having a text file containing 1024 ascii values. I want to plot PSD using rectangular or hanning window, fft and take scare of scaling of frequency and magnitude value. Please suggest the MATLAB code for this problem.
Thanks in advance!!!!!!
1 件のコメント
Lisa Justin
2013 年 8 月 14 日
編集済み: Lisa Justin
2013 年 8 月 14 日
First you need to unpack the binary data and convert to matlab format to be able to work with the data in matlab.
回答 (1 件)
Richard McCulloch
2013 年 7 月 27 日
Is this what you're trying to do?
Fs = 1000;
t = 0:1/Fs:.3;
x=cos(2*pi*t*200)+randn(size(t));
Hs=spectrum.periodogram;
psd(Hs,x,'Fs',Fs)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!