Error in resizing GUIDE gui
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Douglas Anderson
le 19 Jan 2020
Commenté : Douglas Anderson
le 20 Jan 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!

Thanks..
Doug Anderson
0 commentaires
Réponse acceptée
Walter Roberson
le 19 Jan 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 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!