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

请先登录,再进行评论。

类别

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