** I have a "row-vector" of fixed length (29) where each value represents the direction of a "vector" between times 'ti' and 'ti+1' where i ranges from 1 to 29.
eg: a= [10 20 30 40 50];
Here 'a' is a row-vector of length 5 (just for the example, in my data length is 29) where each values 10,20,30,40,50 are values of angular direction of the vector at times 1-2,2-3,3-4,4-5,5-6 seconds respectively.
** Similarly, there are other such row-vectors, all of the same length (29).
** Now, my problem is: I want to group the row vectors with similar angular pattern over the whole length of time.
** Grouping should take into consideration the overall trend of the pattern (should avoid similarity measures like euclidean distances which misses the trend in the vector).
** If I am not wrong, this can be assumed to be a statistical time series analysis problem, which involves some kind of time series clustering techniques.
It would of great help if someone could suggest me an appropriate time series clustering technique or any other technique that would enable me to solve this problem.