To read the aligned data into  matlab:

OrderMffc = 20;  % see line 27 from align.m - > p.num_ceps_coeffs = 20;
fp=fopen('source_td.aligned.mfcc','rb');
V = fread(fp,'float');
V = reshape(V,OrderMffc,length(V)/OrderMffc);
size(V)

ans =

          20      106371



MAtthieu: 

To read the NAME.time.data file, use the function 'V=read_time_data(FILENAME);
To read the NAME.aligned.mfcc, use the function 'V=read_align_data(FILENAME);



