Error: Undefined function or variable [even if I defined the same variable on previous line]
이전 댓글 표시
While I'm running the coming code, I got this error "Undefined function or variable 'ExGr_ME_1'."
if (~isempty(ExGr38) || ~isempty(ExGr60))
if (ExGr38 > ExGr60)
ExGr_ME_1=ExGr38;
else
ExGr_ME_1=ExGr60;
end
end
if ~isempty(ExGr_ME_1)
if (Spd_38 > 0)
if (Nq48_1>0 && Nq48_2>0)
Del48_1= ---- Del48_2= -----
end
답변 (1개)
michio
2018년 1월 17일
0 개 추천
You can place a breakpoint at the line where error happened and see if the variable is really defined.
See https://jp.mathworks.com/help/matlab/matlab_prog/set-breakpoints.html for details of how breakpoints work.
카테고리
도움말 센터 및 File Exchange에서 プログラミング에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!