Error in resizing GUIDE gui

조회 수: 1 (최근 30일)
Douglas Anderson
Douglas Anderson 2020년 1월 19일
댓글: Douglas Anderson 2020년 1월 20일
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일
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
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개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by