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

 Respuesta aceptada

Walter Roberson
Walter Roberson el 19 de En. de 2020

0 votos

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 comentarios

Douglas Anderson
Douglas Anderson el 19 de En. de 2020
Thank you Walter -- but I get an "access denied" message when trying to save the modified guidefunc!
Walter Roberson
Walter Roberson el 19 de En. de 2020
Run As Administrator to do the edit.
Douglas Anderson
Douglas Anderson el 20 de En. de 2020
OK, thank you, again!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre App Building en Centro de ayuda y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by