Speech Signal Analysis using IIR filters
Show older comments
If i want to analyse a speech signal using IIR filters like chebyshev, butterworth and elliptic, how do I decide the parameters like passband and stopband frequency, maximum and minimum passband and stopband ripples?
Pl help me how to proceed ahead with this code.
% Speech Signal Analysis
clc;
clear all;
close all;
[y,fs] = audioread('a010Shoe.wav');
ydft = fft(y);
% I'll assume y has even length
ydft = ydft(1:length(y)/2+1);
% create a frequency vector
freq = 0:fs/length(y):fs/2;
% plot magnitude
subplot(211);
plot(freq,abs(ydft));
% plot phase
subplot(212);
plot(freq,unwrap(angle(ydft)));
xlabel('Hz');
Accepted Answer
More Answers (0)
Categories
Find more on Audio Processing Algorithm Design in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!