Error in resizing GUIDE gui

1 visualizzazione (ultimi 30 giorni)
Douglas Anderson
Douglas Anderson il 19 Gen 2020
Commentato: Douglas Anderson il 20 Gen 2020
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

Risposta accettata

Walter Roberson
Walter Roberson il 19 Gen 2020
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 Commenti
Walter Roberson
Walter Roberson il 19 Gen 2020
Run As Administrator to do the edit.
Douglas Anderson
Douglas Anderson il 20 Gen 2020
OK, thank you, again!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by