Finding Min and Max of a sinusoidal function
Mostrar comentarios más antiguos
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 comentario
Walter Roberson
el 3 de Abr. de 2019
You define
fv = 1:n;
What is it that you expect
minx = min(fv,fv(:,1))
to return?
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 3 de Abr. de 2019
Editada: Walter Roberson
el 3 de Abr. de 2019
0 votos
findpeaks(x,y) for the maxima, and findpeaks(x,-y) for the minima.
Categorías
Más información sobre Descriptive Statistics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!