How I can solve this kind of error?

조회 수: 1 (최근 30일)
Sourasis Chattopadhyay
Sourasis Chattopadhyay 2021년 10월 25일
답변: Image Analyst 2021년 10월 25일
and I am writing this code
  댓글 수: 1
Rik
Rik 2021년 10월 25일
How are you confirming comb5 actually has row+1 rows on the first iteration?

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

답변 (2개)

Sobha T
Sobha T 2021년 10월 25일
If comb5 is a one-dimensional array, then you can use : instead of ,
as shown below
comb5(row:end-1)

Image Analyst
Image Analyst 2021년 10월 25일
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.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by