How can I check if a variable exists within another variable?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Raymond Mo
el 8 de Jul. de 2019
Comentada: Raymond Mo
el 8 de Jul. de 2019
I have a temp variable that changes depending on the type of data being processed. I want to check if that temp variable contains a field called sig or a field called SI. I've written the code below:
if exist('temp.sig','var') ~= 0 %checks if line or map
N = normalize(temp.sig);
image(app.UIAxes,N);
handles.isLine = true;
%display line
elseif exist('temp.SI','var') ~= 0
N = normalize(temp.SI(1,:,:));
image(app.UIAxes,N)
else
end
The issue is that whenever I run this it immediately evaluates both statements to false, even though one or the other should be true. It seems as if the exist statement doesn't check within the temp variable for SI or sig, it just looks for the names in the workspace. I don't know what the issue is or how to fix it.
0 comentarios
Respuesta aceptada
Walter Roberson
el 8 de Jul. de 2019
if isfield(temp, 'sig')
N = normalize(temp.sig);
image(app.UIAxes,N);
handles.isLine = true;
elseif isfield(temp, 'SI')
N = normalize(temp.SI(1,:,:));
image(app.UIAxes,N)
end
Más respuestas (1)
John D'Errico
el 8 de Jul. de 2019
It fails, because exist does not apply to fields of a strcture.
help isfield
isfield True if field is in structure array.
0 comentarios
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!