function error while using sb2ind function
Afficher commentaires plus anciens
when i m using this:
isequal(~rem(CentroidTerm,1),bsxfun(@ge,CentroidTerm ,[1 1]),bsxfun(@le,CentroidTerm ,[m n]))
the output is :
ans 1 ans 1 ans 1 ans 0 three are 1 and one is 0 . what does that mean. plz tell me
1 commentaire
Sean de Wolski
le 19 Juil 2011
bsxfun(@ge,CentroidTerm ,[1 1])
could just be:
CentroidTerm>=1;
no need for the singleton expansion since you're comparing to a scalar value.
Réponses (1)
Walter Roberson
le 19 Juil 2011
0 votes
It means that one of the subscripts you are trying to use is out of range; in particular it appears that one of your CentroidTerm(:,2) is greater than n.
2 commentaires
deepak deepak
le 20 Juil 2011
Sean de Wolski
le 20 Juil 2011
Did you write this code yourself?
Catégories
En savoir plus sur Digital Filter Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!