I am not certain what you want to do, but this may work:
data = [1:202]'; % Create Data
xi = linspace(1,202,172); % Interpolation Vector
data2(:,1) = interp1( [1:1:202] , data(:,1), xi ,'spline') ;
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!