How can I create a for loop to count letters in a sequence?

2 次查看(过去 30 天)
i have the following sequence
a = b c d b c d e c c d b c b e e
i want to create a for loop to identify the number of b’s and c’s in the sequence?
help please

采纳的回答

madhan ravi
madhan ravi 2018-11-19
编辑:madhan ravi 2018-11-19
No loops needed:
a = 'b c d b c d e c c d b c b e e'
no_of_bs=sum(ismember(a,'b'))
no_of_cs=sum(ismember(a,'c'))
  3 个评论
madhan ravi
madhan ravi 2018-11-19
Thanks Guillaume , what was I thinking , you are absolutely right!
Fope Ayo
Fope Ayo 2018-11-19
thanks for this, but ive just realised that I need a for loop because I am then going to use the loop to count a different character in the sequence.
i understand that i dont necessarily need one, but is there a way to create a for loop that loops through a and counts the numebr of b’s?
thanks so much

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by