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

조회 수: 2 (최근 30일)
Fope Ayo
Fope Ayo 2018년 11월 19일
댓글: Fope Ayo 2018년 11월 19일
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