Subscript indices must either be real positive integers or logicals.?

조회 수: 2 (최근 30일)
noam Y
noam Y 2018년 2월 9일
댓글: Stephen23 2018년 2월 9일
I've been getting this error when trying to sum a column: "Subscript indices must either be real positive integers or logicals." and my matrix is uint8 and its values are all zero and it happens starting with the first cell so its no isolated incident, whats the problem? there's my code: bw is a grayscale image from a video with black borders which I'm trying to delete. for the first image it worked but for the second it received an error.
for col=1:size(bw,2)
coloumn = sum(uint8(bw(:,col)));
if coloumn>0
if col==1
maxMinCol2 = 1;
else
maxMinCol2 = col-1;
break
end
end
end
ps: I know there's already other answered pages about his error but I couldnt find this specific circumstance of the error.
thanks in advance :) .

채택된 답변

Stephen23
Stephen23 2018년 2월 9일
You have a variable named sum. Clear it:
clear sum
  댓글 수: 2
noam Y
noam Y 2018년 2월 9일
thanks! that fixed it. just for good measure, I changed the variable name entirely.
Stephen23
Stephen23 2018년 2월 9일
Yes, I should have added "and never call any variable the same name as any inbuilt MATLAB function". Note that you should use which to check if a name is already used, e.g:
which sum -all

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by