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

A call of help to you Super Piddlers from a Riddler (Rookie Piddler). As my start-up PDL project in the field of Machine Learning I am aiming at converting/translating Mark Schmidt's UGM MATLAB suite of programs.

I'm going round in circles trying to vectorize the following ML excerpt:

01 nNodes = 4; nStates=2;
02 potc = [11,12,13,14];      % 1 x 4  potentials
03 yv = [0 0 0 0              % 4 x 4  bit vectors
04       0 0 0 1
05       0 0 1 0
06       0 0 1 1]; 
07 yv = yv + 1;  %ML-conform for indexing
08 nodeBel = zeros(nNodes,nStates);
09 for i = 1:size(potc,2)
10   yc = yv(i,:);
11   for n = 1:nNodes
12     nodeBel(n,yc(n)) = nodeBel(n,yc(n)) + potc(i);
13   end;
14 end;

I'm stuck with Line 12, where I have a index-assigmnent dependency upon the outermost loop variable. Any help would be very much appreciated and get me piddling again.

Thanks. SL

share|improve this question

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.