view Code/General/getVariables.m @ 4:92ca03a8fa99 tip

Update to ICASSP 2013 benchmark
author Dawn Black
date Wed, 13 Feb 2013 11:02:39 +0000
parents ea0c737c6323
children
line wrap: on
line source
% speech range = around 80Hz to 260Hz
% singing range extend up to 1050 Hz
function [ out ] = getVariables( name )

switch name
    case 'getMinFreq'
        out = 100; %100Hz is the default minimum fundatmental frequency

    case 'getMaxFreq'
        out = 1050; %1050 Hz is the default maximum fundamental frequency
    otherwise
        out = 'EEE';
end