Whats next after FFT? signal comparison
1 次查看(过去 30 天)
显示 更早的评论
Hi i want to compare two signals one is record the other will be played then recorded.
recObj = audiorecorder;
disp('Start speaking.')
recordblocking(recObj, 4);
disp('End of Recording.');
myRecording = getaudiodata(recObj);
wavwrite(myRecording,'chordread.wav');
[x, Fs] = wavread('chordread.wav');
[x1, Fs1] = wavread('chordA.wav');
Y = fft(x);
Z = fft(x1);
now I have the data Y and Z how can i compare them? i wanna know if the input signal is chord A of a guitar...
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio Processing Algorithm Design 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!