I would like to plot periodogram for my voice file how to do that?
3 次查看(过去 30 天)
显示 更早的评论
Hello Seniors and Experts, I would like to plot periodogram for my voice file can any one help me that how to plot it? I want to plot for 1000 samples at windows length of 256. I have a code kindly guide me is it good way or not if not kindly solve it.
[y,fs]=audioread('filename.wav');
n=0:256;
y=cos(pi/4*n)+ randn(size(n));
nfft=length(y);
periodogram(y,[],nfft)
0 个评论
回答(1 个)
David Wilson
2019-4-10
编辑:David Wilson
2019-4-10
You read in an audio file and set it to the variable y with sampling frequency fs, and then you immediately clobber it with a noisy sinusoid. Do you want to do that? I suspect not. Just delete lines 2 & 3 & re-run.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulation, Tuning, and Visualization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!