Info

This question is closed. Reopen it to edit or answer.

For Loop. My goal is for my code to recognize if the user inputs an empty 'grade' and then to loop back into itself until the user enters 10 grade values individually.

1 view (last 30 days)
  9 Comments
Owen Jansen
Owen Jansen on 15 Oct 2020
It does, but then it doesn't fill the matrix. Each loop will overwrite the last with the most recent grade input.

Answers (1)

Rik
Rik on 15 Oct 2020
I would suggest using a cell array initially, which you can convert to a normal array after the loop. That way you can use the isempty function to check for an empty input.
Since you don't know how often you need to retry, I would suggest a while loop.

Tags

Community Treasure Hunt

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

Start Hunting!