How I can solve this kind of error?
1 view (last 30 days)
Show older comments
and I am writing this code
1 Comment
Answers (2)
Sobha T
on 25 Oct 2021
If comb5 is a one-dimensional array, then you can use : instead of ,
as shown below
comb5(row:end-1)
0 Comments
Image Analyst
on 25 Oct 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.
0 Comments
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!