Info

This question is closed. Reopen it to edit or answer.

index must be a positive integer or logical

1 view (last 30 days)
Shahd Ewawi
Shahd Ewawi on 5 Apr 2013
Closed: MATLAB Answer Bot on 20 Aug 2021
Attempted to access Connected(0,936); index must be a positive integer or logical.
Error in ==> coc at 36 cc=Connected(i-1,j);
anyone knows how to solve this ??

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 5 Apr 2013
You can not use 0 as index, it must be 1,2,3,... or logical(1) and logical(0)
  3 Comments
Azzi Abdelmalek
Azzi Abdelmalek on 5 Apr 2013
Edited: Azzi Abdelmalek on 5 Apr 2013
cc=Connected(i-1,j)
If i start from 1 then i-1 start from 0
Shahd Ewawi
Shahd Ewawi on 5 Apr 2013
Edited: Shahd Ewawi on 5 Apr 2013
thanks for your help

Community Treasure Hunt

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

Start Hunting!