Wanted to check if a variable exits or not within 'nirsinfo'.

2 vues (au cours des 30 derniers jours)
CalebJones
CalebJones le 22 Oct 2019
if exist(nirsInfo.RawDataInfo.checking,'var') == 1
disp("file exists");
else
disp("doesnt");
end
Here since the .checking doesn't exsist it throwing Reference to non-existent field 'checking' error.
  1 commentaire
CalebJones
CalebJones le 22 Oct 2019
Modifié(e) : CalebJones le 22 Oct 2019
if isfield(nirsInfo.RawDataInfo,'checking') is the correct syntax

Connectez-vous pour commenter.

Réponses (1)

Sahithi Kanumarlapudi
Sahithi Kanumarlapudi le 4 Nov 2019
isfield' can be used to check if a field exists within a structure.
Refer to the following documentation for more information on isfield

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by