Finding Min and Max of a sinusoidal function
Afficher commentaires plus anciens
Hi,
So I have the following code and I want to find the min and max of the function. I tried using 'xmin' and 'ymin' but it outputs all of the values instead of the ones I am looking for. Based off the plot I should be getting 4 xmin and 4ymin points as well as 3xmax and 3ymax points.
Anything would help! Thanks.
1 commentaire
Walter Roberson
le 3 Avr 2019
You define
fv = 1:n;
What is it that you expect
minx = min(fv,fv(:,1))
to return?
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 3 Avr 2019
Modifié(e) : Walter Roberson
le 3 Avr 2019
0 votes
findpeaks(x,y) for the maxima, and findpeaks(x,-y) for the minima.
Catégories
En savoir plus sur Descriptive Statistics 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!