Input: Feature vectors (row vectors) of varying lengths (Max. length = 30, Min. length = 5).

Note: Each value represents a reading taken at a certain time and the time interval is fixed and equal for all cases.

Output: Similarity value between each pair of feature vectors that are compared (Similarity matrix).

Question: Given the input, how to generate the similarity matrix?

I am looking for:

** When the difference between the lengths of the two feature vectors are very high (for eg: in the worst case: [f1]1x30 and [f2]1x5), will a technique like DTW (Dynamic Time Warping) be helpful??

** Are there other techniques/models which could capture the pattern or trend in the data, thus able to compare the similarity in terms of pattern or trend of two feature vectors ?

Similar questions and discussions