how to calculate final minimum in for -loop?

1 visualización (últimos 30 días)
Brian Kim
Brian Kim el 17 de Oct. de 2017
Comentada: Jan el 17 de Oct. de 2017
It is assumed that there are calculated values according to the each iterations.
if..
by for loop,
1st -> 31 14 min = 14
2nd -> 31 14 61 min = 14
3rd -> 31 14 61 74 min = 14
4th -> 31 14 61 74 10 min = 10
5th -> 31 14 61 74 10 2 min = 2
6th -> 31 14 61 74 10 2 50 min = 2
If the values are not less than 2 after 6th, it will be decided as minimum value 2.
How to write code that way?
  1 comentario
Jan
Jan el 17 de Oct. de 2017
The description is not clear. Prefer to post the current code or provide the input data in valid Matlab syntax. Currently the readers have to guess too many details.
Actually all you need is the min() command and perhaps an if to consider "If the values are not less than 2 after 6th, it will be decided as minimum value 2". Please try it.

Iniciar sesión para comentar.

Respuestas (1)

KL
KL el 17 de Oct. de 2017
I suppose this is a homework and you're not allowed to use in-built functions like min. If so, you have to read about
  1. matrix indexing
  2. and how loop control statements work
  3. and then how conditional statements work
if you get an idea of how these things work, you can easily write a program. If you have problems or questions while you're at it, just write a comment here. Good luck!

Categorías

Más información sobre 루프와 조건문 en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!