Borrar filtros
Borrar filtros

check if a variable in a structure exist

202 visualizaciones (últimos 30 días)
Alon
Alon el 16 de Abr. de 2014
Comentada: Alon el 16 de Abr. de 2014
Hello, I must check if the variable handles.Y2 exists in the structure handles(I work with gui). Using exist gives me 0 although it exist in the structure thanks

Respuesta aceptada

dpb
dpb el 16 de Abr. de 2014
isfield(handles,'Y2')
doc isfield % for details
help struct % for reminder on structures

Más respuestas (1)

Sara
Sara el 16 de Abr. de 2014
Use:
ispresent = isfield(handles,'Y2')
See
help isfield
for more infos.

Categorías

Más información sobre Structures en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by