view Code/General/openFile.m @ 0:ea0c737c6323

first commit
author Dawn Black <dawn.black@eecs.qmul.ac.uk>
date Thu, 26 Jul 2012 14:46:25 +0100
parents
children
line wrap: on
line source
function [x, fs, frameLength, noOfFrames] = openFile( currentSampleName )
    
    [ x, fs ] =  wavread(['../' currentSampleName]);
    frameLength = 2^(ceil(log2(fs/100)));
    noOfFrames = floor( length(x) / frameLength); %skip the final samples if necessary

    % Convert stereo to mono
    if (size(x, 2)==2)
        x = mean(x')';
    end