Prev: How to create a function that makes a .txt file w/ file name as parameter
Next: MAKE UPTO $5000 MONTHLY! $2000 INYOUR FIRST 30 DAYS!
From: han on 18 Jun 2010 07:18 I am calculating the similarity in a big and very sparse matrix which dimensions are 940*1600, I use the command of pdist(matrix,'cosine'), however, I got the following error message Error using ==> pdist at 174 Some points have small relative magnitudes, making them effectively zero. Either remove those points, or choose a distance other than cosine. someone who can help me out of this trouble? great thanks
From: Roger Stafford on 18 Jun 2010 08:01 "han " <samuel_han(a)hotmail.com> wrote in message <hvfklc$f8v$1(a)fred.mathworks.com>... > I am calculating the similarity in a big and very sparse matrix which dimensions are 940*1600, > I use the command of pdist(matrix,'cosine'), however, I got the following error message > Error using ==> pdist at 174 > Some points have small relative magnitudes, making them effectively zero. > Either remove those points, or choose a distance other than cosine. > > someone who can help me out of this trouble? > great thanks As the error message is telling you, some of your row vectors are so small in magnitude relative to others that the 'cosine' metric gives a meaningless result, so 'pdist' is complaining about this and refusing to cooperate. You say your matrix is sparse. Perhaps some of your row vectors are actually of zero magnitude. The 'cosine' metric requires that a division by the magnitude be performed, but in such vectors that would produce a NaN rather than a valid result. Roger Stafford
From: Wayne King on 18 Jun 2010 08:09
"han " <samuel_han(a)hotmail.com> wrote in message <hvfklc$f8v$1(a)fred.mathworks.com>... > I am calculating the similarity in a big and very sparse matrix which dimensions are 940*1600, > I use the command of pdist(matrix,'cosine'), however, I got the following error message > Error using ==> pdist at 174 > Some points have small relative magnitudes, making them effectively zero. > Either remove those points, or choose a distance other than cosine. > > someone who can help me out of this trouble? > great thanks Hi Han, It's saying that you have rows in matrix with essentially zero norm. So, basically you have rows which are the zero vector. The cosine metric is 1- cos(theta) where theta is the angle between the vectors represented by two rows. Think just in terms of vectors, what is the angle between any vector and the zero vector? That's why the warning is issued. Wayne |