Index in position 1 is invalid. Array indices must be positive integers or logical values.

4 次查看(过去 30 天)
I have :
c(i,2) = 272.0000
c(i,1) = 42.0000
and L(272.0000,42.0000) gives 2
but when I do
L( c(i,2), c(i,1) )
(L is a 697x103 double)
I got
Index in position 1 is invalid. Array indices must be positive integers or logical values.

采纳的回答

Dyuman Joshi
Dyuman Joshi 2023-2-10
编辑:Dyuman Joshi 2023-2-10
The error occurs because your data is not exactly an integer even though it might look like it.
%Data displayed in the default format i.e. short format
y = 1.0000123
y = 1.0000
Type
format long
in your code and see the value of the the elements.
y
y =
1.000012300000000
Use round(), floor() or ceil() according to what you want to do.
L( round(c(i,2)), round(c(i,1)))
  1 个评论
Xavier
Xavier 2023-2-10
Thank you very much for your answer, I tried with floor() and it works. It is quite surprising though because the value in c are from the use of ginput() so I thought it gives integers corresponding to a pixel.

请先登录,再进行评论。

更多回答(1 个)

Mathieu NOE
Mathieu NOE 2023-2-10
hello
depending of your format, the command window will display more or less decimals
I suspect
c(i,2) = 272.0000...............123
c(i,1) = 42.0000...............789
are not 100% integer so you have to round them to the nearest integer to make your code work
L( round(c(i,2)), round(c(i,1)) ) should now display the correct value

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by