Clear Filters
Clear Filters

How to find cell that contain word that i want ?

1 view (last 30 days)
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

Accepted Answer

Friedrich Welck
Friedrich Welck on 21 Feb 2024
columnhingeAllH2 = hingeresult.HingeState(contains(hingeresult.GenHinge,'H2'))

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!