Check if the value for a field in a struct exists

8 Ansichten (letzte 30 Tage)
black cat
black cat am 10 Feb. 2025
Kommentiert: black cat am 10 Feb. 2025
A struct can have a field name with no value. For example:
A=struct('a',{})
How can I check if this is the case?
I tried
isempty(A.a)
But an error says not enough input arguments.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 10 Feb. 2025
A=struct('a', {})
A = 0x0 empty struct array with fields: a
isempty(A)
ans = logical
1
isempty(A) || isempty(A.a)
ans = logical
1

Weitere Antworten (1)

Matt J
Matt J am 10 Feb. 2025
Bearbeitet: Matt J am 10 Feb. 2025
Watch your struct() syntax,
A=struct('a',[]) %field 'a' with empty matrix
A = struct with fields:
a: []
isempty(A.a)
ans = logical
1
B=struct('a',{{}}) %field 'a' with empty cell array
B = struct with fields:
a: {}
isempty(B.a)
ans = logical
1

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by