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 ExchangeApp Building についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by