Azzera filtri
Azzera filtri

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

1 visualizzazione (ultimi 30 giorni)
I did 12 histograms and need to get the local minimums of each of them using for loop.

Risposte (1)

Walter Roberson
Walter Roberson il 23 Mag 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 Commenti
Walter Roberson
Walter Roberson il 23 Mag 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.

Accedi per commentare.

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by