How to find cell that contain word that i want ?
1 回表示 (過去 30 日間)
古いコメントを表示
hi guys, may you help me creating the code to get some data from the table. Please see the table below:
Now im trying to get 'Hingestate' from cell 1H2, 2H2, 3H2, 4H2. I can collect it one by one like my code below:
columnhinge1H2 = hingeresult.HingeState(strcmp(hingeresult.GenHinge,'1H2'))
columnhinge2H2 = hingeresult.HingeState(strcmp(hingeresult.GenHinge,'2H2'))
columnhinge3H2 = hingeresult.HingeState(strcmp(hingeresult.GenHinge,'3H2'))
columnhinge4H2 = hingeresult.HingeState(strcmp(hingeresult.GenHinge,'4H2'))
but how can i get the four data in one variable ? Theese all contain the same word 'H2' right? so how to get thoose 'HingeState' data for all cell data which contains 'H2'
thanks i hope u understand
0 件のコメント
採用された回答
Friedrich Welck
2024 年 2 月 21 日
columnhingeAllH2 = hingeresult.HingeState(contains(hingeresult.GenHinge,'H2'))
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!