using find-command to find max or min value
Afficher commentaires plus anciens
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 commentaire
Moustafa Abedel Fattah
le 26 Juin 2022
Réponse acceptée
Plus de réponses (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 commentaire
Moustafa Abedel Fattah
le 28 Juin 2022
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

