複数の条件(文字)に一致するインデクスの取得方法
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tadafumi Sugi
el 4 de Dic. de 2023
Comentada: Dyuman Joshi
el 4 de Dic. de 2023
1列目がEat,2列目がRuminationである行番号を取得したいのですが,どうすればよろしいでしょうか?
ご教授よろしくお願いし致します.
0 comentarios
Respuesta aceptada
madhan ravi
el 4 de Dic. de 2023
Editada: madhan ravi
el 4 de Dic. de 2023
Row_number = find(strcmp(Data{:, 1}, 'Eat') & strcmp(Data{:, 2}, 'Rumination')) % Where Data is your Table
5 comentarios
Dyuman Joshi
el 4 de Dic. de 2023
Accepting the answer indicates that your problem has been solved (which can be helpful to other people in future) and it awards the volunteer with reputation points for helping you.
You can accept only 1 answer for a question, but you can vote for as many answers as you want. Voting an answer also provides reputation points.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!