% César Sousa 4-10-2014

% given an matrix X*Y, this function sets the first row and column as '0'
% and continues to cont starting at that point

function output = set_time_line(imput,start)
    
    output = imput;
    output(:,1) = imput(:,1) -  start;

end