Accessing elements from 2d array using for loop

조회 수: 7 (최근 30일)
Meenal Shah
Meenal Shah 2020년 5월 11일
댓글: Ameer Hamza 2020년 5월 11일
I am using MATLAB for image processing
I have made gradmag as an outline of brain MRI scan and fgm4 is only the tumor region of the MRI.
Both are 2d arrays.
The following code, however, gives error:
G1 = zeros(200,200);
for i=1:200
for j=1:200
if((gradmag[i][j]>0) && fgm4[i][j]>0)
G1[i][j]=255;
end
end
end
figure
imshow(G1); title("Outline");
The error:
Error: File: test1.m Line: 106 Column: 20
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check
for mismatched delimiters.
Line 106 refers to the if statement

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 5월 11일
편집: Ameer Hamza 2020년 5월 11일
In MATLAB parenthesis are used for indexing, So change your code lines to
if((gradmag(i,j)>0) && fgm4(i,j)>0)
and
G1(i,j)=255;
You can also take this course: https://www.mathworks.com/learn/tutorials/matlab-onramp.html to learn basics about MATLAB.
  댓글 수: 2
Meenal Shah
Meenal Shah 2020년 5월 11일
Thank you so much!!!
Ameer Hamza
Ameer Hamza 2020년 5월 11일
I am glad to be of help.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by