using find-command to find max or min value
Show older comments
Please I need your help to estimate the value of min or max of abs(Y) and its corresponding (X) for attached curve (X versus X ) using (find)-command. In addition want plot a line of corresponding (X) and (Y).
Thanks in advance for all.
Best Regards;
1 Comment
Moustafa Abedel Fattah
on 26 Jun 2022
Accepted Answer
More Answers (1)
I prefer using the find function in combination to find max and min locations. The reason being if the max occurs at more than one location, max only gives you the location of the first one. I've asked them for many, many years to return the index(es) of all max in the vactor.
y = [1 3 2 3 0] % Max at index 2 and 4
[maxValue, indexes] = max(y) % Only gives you the one at index 2 not at 4.
1 Comment
Moustafa Abedel Fattah
on 28 Jun 2022
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
