Error in resizing GUIDE gui
2 ビュー (過去 30 日間)
古いコメントを表示
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!
Thanks..
Doug Anderson
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!