From: Jan Simon on
Dear Adam,


> > Year = floor(D / 1000); <<<----------------- WHAT IS D??
> > Month = rem(D / 100, 100);
> > Day = rem(D, 100);
> > Time = sscanf(T, '%d:%d:%d'); <<<---------WHAT IS T???
> > V = [Year, Month, Day, reshape(Time, 1, 3)];

> Jan, Thanks for this suggestions. I would like to use it but I am a little confused. What is D and T ??

D is your YearV(i), T is your TimeC{i}.
Did you read the other suggestions in your old thread?

Jan