At least one END is missing: the statement may begin here.

조회 수: 56 (최근 30일)
Jenice Chen
Jenice Chen 2018년 12월 26일
답변: Monish V 2020년 9월 27일
for p=1:size(case_matrix,1)
if case_matrix(p,1)==1
scatter(case_matrix(p,4),case_matrix(p,5),'s','r');
hold on;
elseif case_matrix(p,1)==2
scatter(case_matrix(p,4),case_matrix(p,5),'o','b');
hold on;
elseif case_matrix(p,1)==3
scatter(case_matrix(p,4),case_matrix(p,5),'m','*');
hold on;
if case_matrix(p,1)==4
scatter(case_matrix(p,4),case_matrix(p,5),'x','g ');
hold on;
end
end
Error: File: ConflictCase_2.m Line: 52 Column: 1
At least one END is missing: the statement may begin here.

답변 (4개)

madhan ravi
madhan ravi 2018년 12월 26일
편집: madhan ravi 2018년 12월 26일
See https://www.mathworks.com/help/matlab/ref/if.html (to better understand about if statements), when an if condition is used it needs to have an end
elseif case_matrix(p,1)==4
% ^^^^----- missed it

Steven Lord
Steven Lord 2019년 1월 16일
Copy and paste this code into the MATLAB Editor. Select all that text, right-click, and select the "Smart Indent" menu option. This will line up each end keyword with the other keyword whose block it completes. Ideally, if there is a for, if, while, etc. starting in the first column of the first line, the final end on the last line should also start in the first column. For your code, it doesn't.
Looking at the code pattern I agree with KALYAN ACHARJYA's answer that your last case probably should start with elseif instead of if. When I make that change and smart indent the code, now the final end lines up with the for.

KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 12월 26일
편집: KALYAN ACHARJYA 2018년 12월 26일
for p=1:size(case_matrix,1)
if case_matrix(p,1)==1
scatter(case_matrix(p,4),case_matrix(p,5),'s','r');
hold on;
elseif case_matrix(p,1)==2
scatter(case_matrix(p,4),case_matrix(p,5),'o','b');
hold on;
elseif case_matrix(p,1)==3
scatter(case_matrix(p,4),case_matrix(p,5),'m','*');
hold on;
elseif case_matrix(p,1)==4
scatter(case_matrix(p,4),case_matrix(p,5),'x','g ');
hold on;
else
disp('No Condition is Satisfied');
end
end

Monish V
Monish V 2020년 9월 27일
Error: File: lab.m Line: 11 Column: 1
At least one END is missing: the statement may begin here.

카테고리

Help CenterFile Exchange에서 Customize Object Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by