필터 지우기
필터 지우기

error while using melcepst

조회 수: 6 (최근 30일)
Ayush
Ayush 2015년 6월 7일
댓글: SURESH VEE 2021년 3월 24일
i am doing a project on voice recognition, in order to compare i am using melcepst here is the code snippet
clear
input_signal_1=wavread('andrea hello.wav');
input_signal_2=wavread('john hello.wav');
[ceps_1,freqresp,fb,fbrecon,freqrecon] =mfcc(input_signal_1, 16000);
[ceps_2,freqresp,fb,fbrecon,freqrecon] =mfcc(input_signal_2, 16000);
% measure the distance between ceps_1 and ceps_2
% distance_measured=disteusq(ceps_1, ceps_2); % this was giving me big values, so
% distance_average=mean(distance_measured) % i used the distance function f % below
distance_measured=distance(ceps_1, ceps_2);
distance_average=mean(distance_measured);
toatal_mfcc=mean(distance_average)
i am getting error as Error using mffc
Undefined function 'mffc' for input arguments of type 'double'.
Error using melcepst instead of mffc
Too many output arguments.

채택된 답변

Walter Roberson
Walter Roberson 2015년 6월 7일
mfcc does not appear to be part of MATLAB. It appears to be a routine from the File Exchange . You will need to download it and install it.
  댓글 수: 1
SURESH VEE
SURESH VEE 2021년 3월 24일
how to download file exchange
for mfcc

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Speech Recognition에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by