vector array in matlab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ali hassan
el 10 de Feb. de 2022
Comentada: Adam Danz
el 10 de Feb. de 2022
assume i have folllowing vector column named as ALT_digit_
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/890540/image.png)
i want to know the number of times 'hi' comes in the vector column.
0 comentarios
Respuesta aceptada
Más respuestas (2)
Adam Danz
el 10 de Feb. de 2022
Editada: Adam Danz
el 10 de Feb. de 2022
1 comentario
Adam Danz
el 10 de Feb. de 2022
If your only string values are 'hi' 'lo' or '' and your Matlab release is R2016b or later, this solution is perfectly fine. But if you're using a release prior to 16b or combinations of 'hi' and 'lo', consider using a different method.
Image Analyst
el 10 de Feb. de 2022
Yes another way : using ismember():
ALT_digit = {'lo', '', '', '', 'lo', '', '', '', 'lo', '', 'abc'}
rows = ismember(ALT_digit, 'lo')
count = sum(rows)
0 comentarios
Ver también
Categorías
Más información sobre Characters and Strings 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!