No BSD License
-
f_DECODER (aCoeff, pitch_plot...
DECODER PORTION
-
f_ENCODER(x, fs, M);
ENCODER PORTION
-
f_GAIN (e, voiced_b, pitch_pl...
function for calc gain per frame
-
f_SYN_UV (aCoeff, gain, frame...
a function of f_DEOCDER
-
f_SYN_V (aCoeff, gain, frame_...
a function of f_DEOCDER
-
f_VOICED(x, fs, fsize);
function_main of voiced/unvoiced detection
-
func_lev_durb (y, M);
function of levinsonDurbin__Hamza
-
func_pitch (y,fs)
-
func_vd_msf (y)
function of "voicingDetector_magnitude_sum_function__hamza"
-
func_vd_zc (y)
function of "voicingDetector_zero_crossing_detector__hamza"
-
MAIN.m
-
PG_vs_M_graph_for_lev_durb.m
-
View all files
|
|
| func_vd_msf (y)
|
%function of "voicingDetector_magnitude_sum_function__hamza"
function m_s_f = func_vd_msf (y)
clear m_s_f;
[B,A] = butter(9,.33,'low'); %.5 or .33?
y1 = filter(B,A,y);
m_s_f=sum(abs(y1));
% (msf>((.5).*(sum(msf)./length(msf))))
% if s>13
% msf=1;
% else
% msf=0;
% end
%
|
|
Contact us at files@mathworks.com