Write a Matlab script that accepts the file “FilteredEvidence.wav” and performs the signal processing operations
2 ビュー (過去 30 日間)
古いコメントを表示
Write a Matlab script that accepts the file “FilteredEvidence.wav” and performs the signal processing operations
This will plot 60 Hz frequency
I upload the FilteredEvidenceFile.wav in Matlab but I got errors message Unrecognized function or variable 'l' when run it.
clearvars;
close all;
ToneFreqHz = 60;
[FilteredEvidence,Fs]=audioread('FilteredEvidenceFile.wav');
NumSamp = size(FilteredEvidence,l);
%Create an array of cosine sample.
CosArray = zeros(NumSamp,l);
for Samp = 1 : NumSamp
CosArray(Samp) = cos(2*pi*60*Samp/Fs);
end
%Multiply each input sample by the cosine sample.
DemodOut = FilteredEvidence .* CosArray;
%Remove component at 120Hz with a moving average filter.
FirTaps = 1/3675*ones(3675,1);
CosArrayFiltered = filter(FirTaps, l, DemodOut);
0 件のコメント
採用された回答
Fifteen12
2022 年 12 月 3 日
You use a variable l in your code, but I don't see it defined (line 6). Make sure you set l equal to some value earlier in your script!
4 件のコメント
Fifteen12
2022 年 12 月 4 日
l in this case is the dimension of FilteredEvidence you're finding the size of. I'm not sure what dimension you're looking for, though Walter Roberson's suggestion ( l = 1) is as good as any. l is used later on as the denominator coeffecient of the rational transfer function employed in the filter equation (last line).
If that denominator is coeff is 1, then go ahead and set l equal to 1.
Walter Roberson
2022 年 12 月 4 日
audioread() always returns an N x channels array where N is number of samples. channels is 1 for mono, 2 for stereo (both mono and stereo are common) and higher for possibilities such as Dolby. audioread() never returns a 3D array. So the possible choices for l in size(FilteredEvidence,l) are only 1 (number of samples) or 2 (number of channels) and anything larger would return 1
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Filter Analysis についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!