필터 지우기
필터 지우기

Is there a way to make a str(1) add one in a while loop so it would give str(2) instead?

조회 수: 2 (최근 30일)
So I am working on a project for my matlab class. I am making a morse code encoder and decoder. I was going to make it so that I would have them enter the code it, and it would use a loop to split each character up. Then it would run each one through a while loop till the character found the right translation of dots and dashes. My question is there a way when splitting them the code up that I could make code(1) add one so like code(1+1) each time it is run in the initial loop. I am planning on having an isempty to end the loop once there are no more characters.

채택된 답변

Walter Roberson
Walter Roberson 2017년 11월 24일
counter = 0;
...
for ...
counter = counter + 1;
... code(counter) ...
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by