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

3 views (last 30 days)
I did 12 histograms and need to get the local minimums of each of them using for loop.

Answers (1)

Walter Roberson
Walter Roberson on 23 May 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 Comments
Walter Roberson
Walter Roberson on 23 May 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.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!