필터 지우기
필터 지우기

Subscript indices must either be real positive integers or logicals.

조회 수: 1 (최근 30일)
Hi,
dist = sqrt((r1 - r2) ^ 2 + (c1 - c2) ^ 2);
costs(i) = 1 /ceil( dist) * exp(- abs(ceil(img(abs(r1), abs(c1))) - ceil(img(abs(r2),abs(c2)))) ^ 2 / (2 * sigma ^ 2));
c2 is equal to 0 ,so it returns Subscript indices must either be real positive integers or logicals.
Thanks

채택된 답변

Image Analyst
Image Analyst 2016년 5월 9일
편집: Image Analyst 2016년 5월 9일

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2016년 5월 9일
Check if abs is not used as a variable in your code. You can check by writing
whos abs
You can resolve the problem by typing
clear abs
abs(c2)
  댓글 수: 2
sbei arafet
sbei arafet 2016년 5월 9일
Hi, thanks, i don't think it's the problem since abs works with other variables,i've checked it but it does'nt , the problem that the 0 is not considered as positive
Azzi Abdelmalek
Azzi Abdelmalek 2016년 5월 9일
You don't think, but have you tried to check it buy typing?
which abs
clear abs
abs(0)

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

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by