How to compute the average of distances between a column and other columns of a matrix?
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
I want to compute the average of distances between a column and other columns in a matrix except itself.
I'm not sure that  the if section is true or not.
 the data matrix is nXm size  
I'll be grateful to have your opinion.   
for i=1:m 
    for j=1:m-1
        if(i==j)  
            t=0
        else
            t=pdist2(data(:,i),data(:,j),'jaccard');
            b=sum(t)/(m-1);
        end  
    end
end
plot(b)
3 Kommentare
  Rik
      
      
 am 2 Jan. 2019
				Use the debugger to step through your code line by line and see what happens. That's how I would find out.
The debugging tools are one of the points where Matlab crushed the competition by GNU Octave, so you should really learn to use them.
Antworten (0)
Siehe auch
Kategorien
				Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!