Finding the minima or maxima point on a graph

1 vue (au cours des 30 derniers jours)
jack Hardy
jack Hardy le 3 Déc 2019
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?

Réponses (1)

KALYAN ACHARJYA
KALYAN ACHARJYA le 3 Déc 2019
Modifié(e) : KALYAN ACHARJYA le 3 Déc 2019
You can find local min islocalmin (first return array)
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 commentaire
jack Hardy
jack Hardy le 3 Déc 2019
what do you mean by "first and last return of array"?

Connectez-vous pour commenter.

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by