Speaker Recognition using Matlab
Ø ABSTRACT:
· It involves having Fast Fourier transform of the given speech then normalizing the frequency signal.
· Finally, the reference and the given data are compared and the result is displayed depending on the variation in the input speeches.
Ø WORKING OF MODEL:
Ø MATLAB CODING:
Ø Coding
for Input:-
data=data(1:600);
fy=fft(data);
fy=fy.*conj(fy);
tn=fy/sqrt(sum(abs(fy).^2));
Ø Coding
for Comparasion:-
s=sqrt(sum(abs(f-d).^2));
if s<2*1
result=strcat('HELLO!!!');
result
else
result=strcat('YOU ARE NOT');
result
end