Filter löschen
Filter löschen

How to find cell that contain word that i want ?

1 Ansicht (letzte 30 Tage)
Arif
Arif am 21 Feb. 2024
Beantwortet: Friedrich Welck am 21 Feb. 2024
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

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by