function error while using sb2ind function
Ältere Kommentare anzeigen
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 Kommentar
Sean de Wolski
am 19 Jul. 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.
Antworten (1)
Walter Roberson
am 19 Jul. 2011
0 Stimmen
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 Kommentare
deepak deepak
am 20 Jul. 2011
Sean de Wolski
am 20 Jul. 2011
Did you write this code yourself?
Kategorien
Mehr zu Digital Filter Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!