Finding Min and Max of a sinusoidal function
Show older comments
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 Comment
Walter Roberson
on 3 Apr 2019
You define
fv = 1:n;
What is it that you expect
minx = min(fv,fv(:,1))
to return?
Accepted Answer
More Answers (1)
Walter Roberson
on 3 Apr 2019
Edited: Walter Roberson
on 3 Apr 2019
0 votes
findpeaks(x,y) for the maxima, and findpeaks(x,-y) for the minima.
Categories
Find more on Descriptive Statistics 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!