I have two n-dimensional vectors, where their values v1,..vn are between 0-1.
Lets say: vector1 = [0.91,0.48,0.1] , vector2 = [0.73,0.56,0.015]
I want to determine how similar they are, direction-wise. Tried to use cosine distance and I fell like the values I get are not right. For example, for these two vectors above I get: 0.017 Is it wrong? I really need a way to say how similar are these vectors.
Thanks.