how do you get the max y value in an fplot?

26 visualizaciones (últimos 30 días)
Cameron Ernest
Cameron Ernest el 17 de Jun. de 2019
Comentada: dpb el 19 de Nov. de 2022
How would I find the max y value in the following fplot
mu = @(theta) (sind(theta)/(1.8925 + cosd(theta)));
fplot(mu,[0 180]);

Respuestas (2)

madhan ravi
madhan ravi el 17 de Jun. de 2019
h = fplot(...);
MAX = max(h.YData)
  2 comentarios
DKonk
DKonk el 19 de Nov. de 2022
Is it possible to execute this command, then find out the x location of this max?
dpb
dpb el 19 de Nov. de 2022
Of course. See the Answer I gave just below...

Iniciar sesión para comentar.


dpb
dpb el 17 de Jun. de 2019
Look at the documentation and see what else you can do with fplot...
fp=fplot(mu,[0 100]);
[mxMu,imx]=max(fp.YData); % max, location
NB: Above is the maximum of the calculated points, not necessarily the functional maximum.
ADDENDUM: To avoid the warning message from fplot write your function with the "dot" operator ./ instead of just /

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by