Check if a field within a structure exist

65 ビュー (過去 30 日間)
Luis Eduardo Cofré Lizama
Luis Eduardo Cofré Lizama 2023 年 3 月 6 日
編集済み: Stephen23 2023 年 3 月 6 日
I have a structure with data for different periods (9) of a timeseries. Sometimes within a structure there's a field called "Breaks". e.g. Data.Period_4.Breaks, whicjh contains 2 duration values. I need to check for each period (1:9) if the field Breaks exist. However when doing the following below, it does always provide "false". Am I missing something or not doing properly? Also, can I use "~isfield"... it does not say no when used.
for i=1:9
chunk = strcat('Period_',num2str(i));
if isfield(strcat('Data.',chunk),Breaks)
data = xyz;
elseif ~isfield(strcat('Data.',chunk),Breaks)
data =zyx;
end
Regards
Eduardo
  1 件のコメント
Stephen23
Stephen23 2023 年 3 月 6 日
編集済み: Stephen23 2023 年 3 月 6 日

サインインしてコメントする。

回答 (1 件)

Voss
Voss 2023 年 3 月 6 日
for i=1:9
chunk = sprintf('Period_%d',i);
if isfield(Data.(chunk),'Breaks')
data = xyz;
else
data = zyx;
end
end

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by