Using fminbnd to find the max value.
14 views (last 30 days)
Show older comments
Jose Grimaldo
on 15 Apr 2020
Edited: Walter Roberson
on 15 Apr 2020
How can I find the max value between 0.5 - 5 using fminbnd?
m=.09
b=2.7
Eq1=@(x) b.*(x.^m)
% I try this but I get an error
Maxp=fminbnd(Eq1.*-1,0.5,5)
0 Comments
Accepted Answer
Walter Roberson
on 15 Apr 2020
Edited: Walter Roberson
on 15 Apr 2020
[Bestx, Maxp] = fminbnd(@(x) -Eq1(x), 0.5, 5)
0 Comments
More Answers (0)
See Also
Categories
Find more on Verification, Validation, and Test in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!