Effacer les filtres
Effacer les filtres

problem during running my "while" loop?

1 vue (au cours des 30 derniers jours)
Dhines
Dhines le 5 Mar 2013
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 commentaires
Jan
Jan le 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?

Connectez-vous pour commenter.

Réponses (2)

George Papazafeiropoulos
George Papazafeiropoulos le 5 Mar 2013
How are X0 and Y1 defined?
George
  3 commentaires
Jan
Jan le 7 Mar 2013
@prasanna: Have you seen my questions in the comment section? Please answer them.
Dhines
Dhines le 8 Mar 2013
??? Index exceeds matrix dimensions.
Error in ==> trained at 1329 r=[S(f),r];

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 8 Mar 2013

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by