problem during running my "while" loop?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Jan
am 5 Mär. 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?
Walter Roberson
am 7 Mär. 2013
Antworten (2)
George Papazafeiropoulos
am 5 Mär. 2013
How are X0 and Y1 defined?
George
3 Kommentare
Jan
am 7 Mär. 2013
@prasanna: Have you seen my questions in the comment section? Please answer them.
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!