Finding the minima or maxima point on a graph
Ältere Kommentare anzeigen
Hi, Hope someone can help.
I have a line graph and i want to fin the minima or maxima point, is there a simple finction i can use to the do this?
Antworten (1)
KALYAN ACHARJYA
am 3 Dez. 2019
Bearbeitet: KALYAN ACHARJYA
am 3 Dez. 2019
or
#Example
x=1:100;
c=2;
m=3;
y=m*x+c;
data1=find(y==min(y)); %index of minimum
data2=find(y==max(y)); %index of maximum
Is this?
1 Kommentar
jack Hardy
am 3 Dez. 2019
Kategorien
Mehr zu Networks finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!