Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a vector y(d x 1) and matrix Z(d x n), I would like to implement the optimal matlab code for the below algorithm.

Initialization:  
Let z* be the nearest point from y in Z.  
A={z*} (A is the list of assignment for y)  
Z = Z \ {z*} (z* point is removed from matrix Z)  

do  
Let p denotes the center of gravity of A:  
Let z* be the nearest center from y in Z(updated Z)  
Let q denotes the center of gravity of A U {z*}  
if distance(y,q) < distance(y,p) then   
 A = A U {z*} and Z = Z \ {z*}  
else  
 NOP  
endif   
while a new assignment is performed

return A(list of assignments)

function A = Assign(x,Z) 
%
%   x - 1 x N
%   Z - k x N
%
OriginalZ = Z;
[~,index]=sort(pdist2(x,Z));
A = index(1);
Z(A,:)=inf;
loop =1;

while(loop)
  loop =0;
  p=mean(OriginalZ(A,:),1);
  [~,index]=sort(pdist2(x,Z));
  Ad = [A index(1)];
  q = mean(OriginalZ(Ad,:),1);
  if pdist([x;q]) < pdist([x;p])
     A = Ad; Z(Ad,:)=inf;
     loop = 1;
  end
end
end
share|improve this question
1  
What do you have so far? – Oli Charlesworth Dec 27 '11 at 16:56
I have difficulties in implementing the do..while loop. Till now for initialization, i found out the distance between the point y and Z and sorted the calculated distance to find z* , then i replaced the corresponding column of Z with INF ( since i dont want to consider that point from now). I feel this is not optimal way implementing this algorithm. Hence i posted it here. – Learner Dec 27 '11 at 17:03
Edited my question with the sample code. – Learner Dec 27 '11 at 17:41
Instead of setting the unwanted columns of Z to inf, you can remove them from the matrix: Z(:,idx) = []. Also Z(Ad,:)=inf; in your code would replace rows of Z with inf, not its columns. – Kavka Dec 27 '11 at 19:45
Please specify in the title and the question what problem you are trying to solve, so that others will be able to find it in the future. – cyborg Dec 28 '11 at 9:03
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.