I have some travel time data stored as column vectors. I want to write a script that will allow me run a linear interpolation from specified initial and final values, to make a column of distances, so I can calculate velocity.
example: Column 1: t1,t2,t3......tn; Column 2: (using the linear interpolation we create) d1, d2, d3....dn
So here we have generated a distance for each travel time based on an initial distance and a final distance.
then it should be simple to generate a new column that is simply the interpolated distances / travel times. Thanks for your help. Cheers