problem during running my "while" loop?
1 view (last 30 days)
Show older comments
i maintained one algorithm for my project. in that some of steps are repeated until get some condition satisfied. so i use while for this steps. when i constructs the while loop for my algorithm. its works well, but its gives less value. that is i wrote coding for 50 features. but its gives upto 39 values. and shows some error. please kindly release this error and get sufficient output.
my code is...
while ~isempty(S)
X50=X0(:,S);
alpha=svmtrain(X50,Y1);
W=(((alpha.Alpha).*(alpha.GroupNames(alpha.SupportVectorIndices))))'* (alpha.SupportVectors);
m_f=alpha.SupportVectors;
tm_f= mean(m_f(1:4,:))-mean(m_f(5:7,:));
for i=1:length(W)
C(i)=W(i)*tm_f(i);
end
f=argmin(C);
r=[S(f),r];
S=S([1:f-1, f+1:length(S)]);
end
....
here my weight vector W values is 50 features.and also S. but both are shows only 39 values. what is the reason for that. i know this information not sufficient for you. because its my mid section of coding. if you want to any further information please ask.
2 Comments
Jan
on 5 Mar 2013
Please post the error message instead of only mentioning, that it shows "some" errors. Actually Matlab cannot show some errors, because it stops after the first one. What does "showing values" exactly mean? Does the vector have 39 elements or are the remaining elements equal to zero?
Answers (2)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!