Hello,
I am using GUIDE, and now am getting this error in modifying a GUIDE gui. The gui works, but not sure what's going on here!
matlab error 1.png
Thanks..
Doug Anderson

 채택된 답변

Walter Roberson
Walter Roberson 2020년 1월 19일

0 개 추천

Change line 2765 of guidefunc from
if ~strcmpi(get(children(i),'Units'), 'normalized')
to
if hasfield(children(i), 'Units') && ~strcmpi(get(children(i),'Units'), 'normalized')

댓글 수: 3

Douglas Anderson
Douglas Anderson 2020년 1월 19일
Thank you Walter -- but I get an "access denied" message when trying to save the modified guidefunc!
Walter Roberson
Walter Roberson 2020년 1월 19일
Run As Administrator to do the edit.
Douglas Anderson
Douglas Anderson 2020년 1월 20일
OK, thank you, again!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 App Building에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by