MATLAB: Turning x amount of data points in to 100 to get a percentage

gaitkinematicspercentage

Hi,
I have a row vector containing 120 data points. How would I convert that data in to 100. I am working on gait cycles and would like to analyse the knee angles at a certain percentage of the cycle. This is what I was attempting to use but that just seems to ignore any data points past the 100th value.
y = linspace(1,100,100); Gait_Cycle_Percent =interp1(x,y) where x is the raw 120×1 data.
Thank you

Best Answer

If you have the signal processing toolbox:
Related Question