Effacer les filtres
Effacer les filtres

How to obtain max value of a plot

107 vues (au cours des 30 derniers jours)
ekko ekkosen
ekko ekkosen le 18 Mar 2015
Commenté : Image Analyst le 19 Mar 2015
i was wondering how to obtain the data of the peak from a plot (max Y value and its X position) with: x = linspace(0,20); F = sin(x) P1 = plot (x,F);
ok so from this how can i write a command that shows me that the first peak is at F = 1 and X = 1.57

Réponse acceptée

Image Analyst
Image Analyst le 18 Mar 2015
Try this:
maxF = max(F); % Find max value over all elements.
indexOfFirstMax = find(F == maxF, 1, 'first'); % Get first element that is the max.
% Get the x and y values at that index.
maxY = F(indexOfFirstMax);
maxX = x(indexOfFirstMax);
  5 commentaires
ekko ekkosen
ekko ekkosen le 19 Mar 2015
i found a solution from one of your earlier answers with some modifications. Thanks! i will be using:
[MaxValue, Index_At_F] = max(double(F))
t_Position_of_MaxValue = t(Index_At_F)
to find the x and y value of the peak.
Image Analyst
Image Analyst le 19 Mar 2015
Ok, using max() is an alternate way - it gives you the same information as what I gave here except with a different function. And you changed the name of x to t, but otherwise the code is equivalent so I'm not sure why you said it didn't find the first peak. By the way, you don't need to cast F to double.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by