How can I check if a variable exists within another variable?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Raymond Mo
le 8 Juil 2019
Commenté : Raymond Mo
le 8 Juil 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 commentaires
Réponse acceptée
Walter Roberson
le 8 Juil 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
Plus de réponses (1)
John D'Errico
le 8 Juil 2019
It fails, because exist does not apply to fields of a strcture.
help isfield
isfield True if field is in structure array.
0 commentaires
Voir également
Catégories
En savoir plus sur Structures dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!