vector array in matlab
2 次查看(过去 30 天)
显示 更早的评论
assume i have folllowing vector column named as ALT_digit_
i want to know the number of times 'hi' comes in the vector column.
0 个评论
采纳的回答
更多回答(2 个)
Adam Danz
2022-2-10
编辑:Adam Danz
2022-2-10
1 个评论
Adam Danz
2022-2-10
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
2022-2-10
Yes another way : using ismember():
ALT_digit = {'lo', '', '', '', 'lo', '', '', '', 'lo', '', 'abc'}
rows = ismember(ALT_digit, 'lo')
count = sum(rows)
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!