How to find the coordinates of starting, end point and peak from graph?

4 vues (au cours des 30 derniers jours)
parag gupta
parag gupta le 2 Août 2019
Commenté : Star Strider le 3 Août 2019
How to find the peak value, end point and distance between starting and end point?
x = linespace(-5,5); y = sqrt((36-x.^2)/9); figure() plot (x,y)

Réponse acceptée

Star Strider
Star Strider le 2 Août 2019
Try this:
x = linspace(-5,5);
y = sqrt((36-x.^2)/9);
figure()
plot (x,y)
[onePeak,loc] = max(y) % Peak Value & Index
endPoint = y(end) % End Point Value
se_dist = max(x) - min(x) % Start To End Distance
producing:
onePeak =
1.9999
loc =
50
endPoint =
1.1055
se_dist =
10
  11 commentaires
parag gupta
parag gupta le 3 Août 2019
Hey thank you so much @star :) thanksssssssss :)
Star Strider
Star Strider le 3 Août 2019
As always, my pleasure!

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