find if the variable exists in a given cell-structure

12 ビュー (過去 30 日間)
Megha
Megha 2018 年 8 月 16 日
編集済み: Stephen23 2018 年 8 月 16 日
I have structure-data within a cell. Now I would like to check the condition in each cell if the particular variable exists or not?
So, i tried something like,
str = (['data{1,' num2str(i) '}.m_PA_in_out1']);
if exist(str,'var')==1
disp('>>>> YES')
else
disp('no variable')
end
  1 件のコメント
Stephen23
Stephen23 2018 年 8 月 16 日
編集済み: Stephen23 2018 年 8 月 16 日
"Now I would like to check the condition in each cell if the particular variable exists or not?"
Neither cells nor structures contain "variables", although tables do use this nomenclature. Structures have fields. Are you actually trying to test if the structure contains a particular field ? I.e. to check if the structure in data{...} contains the field m_PA_in_out1 ?
Note that if all structures have the same fields then you would be better off using a non-scalar structure:
As I wrote in my comment to your earlier question, the approach you are using is going to be slow, complex, and buggy (exactly as you are finding out).

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

採用された回答

Stephen23
Stephen23 2018 年 8 月 16 日
編集済み: Stephen23 2018 年 8 月 16 日
Use isfield to test if a structure has a particular field:
isfield(data{1,i},'m_PA_in_out1')
  2 件のコメント
Megha
Megha 2018 年 8 月 16 日
Just tried the same
isfield(data{1,i},'m_PA_in_out1')
it does not identify the variable and ends the loop as it is.
Megha
Megha 2018 年 8 月 16 日
oh okay! sorry I put
isfield(data{1,i},'.m_FPSA_in_out1')
.Dot before m_FPSA_in_out1.
ANyway, Thanks

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by