Borrar filtros
Borrar filtros

Hello, I need a code that gets the local minimum of a histogram by using for loops.

1 visualización (últimos 30 días)
I did 12 histograms and need to get the local minimums of each of them using for loop.

Respuestas (1)

Walter Roberson
Walter Roberson el 23 de Mayo de 2022
Initialize to index 1.
Initialize to "potentially in a local minima"
If you are potentially in a local minima, check to see if the value of the next location is greater than the current value. If it is, then you were in a local minima, and record it, and flip out of potentially mode. But if the value of the next location is equal to the current value, maintain "potentially" mode and continue to the next location. If the value of the next location is less than the current value, make that the new current value and continue in "potentially" mode. If you ran off the end of the array then you were in a local minima.
You should be able to do a similar analysis for the case where you are not currently in "potentially" mode.
  2 comentarios
AbdelRahman Mostafa
AbdelRahman Mostafa el 23 de Mayo de 2022
Thank you Walter. Can you write a code for this explanation ?
Walter Roberson
Walter Roberson el 23 de Mayo de 2022
Yes, I could. However, requiring that a for loop is used is an indication of a homework assignment, and you are responsible for writing your own homework.

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by