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_zc (y)
|
%function of "voicingDetector_zero_crossing_detector__hamza"
function ZC = func_vd_zc (y)
ZC=0;
for n=1:length(y),
if n+1>length(y)
break
end
ZC=ZC + (1./2) .* abs(sign(y(n+1))-sign(y(n)));
end
ZC;
|
|
Contact us at files@mathworks.com