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

20 visualizzazioni (ultimi 30 giorni)
Cameron Ernest
Cameron Ernest il 17 Giu 2019
Commentato: dpb il 19 Nov 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]);

Risposte (2)

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

Accedi per commentare.


dpb
dpb il 17 Giu 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 /

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by