view Code/General/getVariables.m @ 2:5fd388fdd6ef

initial commit - this file allows the programmer to select which of the PRAAT generated metrics the user wishes to use for classification, and then applies the k-means classifier.
author Dawn Black <dawn.black@eecs.qmul.ac.uk>
date Mon, 10 Sep 2012 09:18:15 +0100
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