How I can solve this kind of error?

2 visualizaciones (últimos 30 días)
Sourasis Chattopadhyay
Sourasis Chattopadhyay el 25 de Oct. de 2021
Respondida: Image Analyst el 25 de Oct. de 2021
and I am writing this code
  1 comentario
Rik
Rik el 25 de Oct. de 2021
How are you confirming comb5 actually has row+1 rows on the first iteration?

Iniciar sesión para comentar.

Respuestas (2)

Sobha T
Sobha T el 25 de Oct. de 2021
If comb5 is a one-dimensional array, then you can use : instead of ,
as shown below
comb5(row:end-1)

Image Analyst
Image Analyst el 25 de Oct. de 2021
Before the while loop, put this
[rows, columns] = size(comb5) % Don't use a semicolon
what do you see? Chances are you have 1 row and several columns, so you can't reference comb5(1+1, end) because comb5 does not have 2 rows.

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by