How to find value of X when Y reaches maximum value
Show older comments
Hello,
I am new to MATLAB Simulink, I want output as the value of X when Y reaches maximum.
Y is a calculated value from an equation and is a function of X

4 Comments
Rik
on 18 Aug 2020
Does it have to be inside Simulink, or is it also possible to move this problem to Matlab itself?
RAHUL YADAV
on 18 Aug 2020
Rik
on 18 Aug 2020
I don't know much about Simulink, so I can't help you there. Once you have a function in Matlab itself you can use fminsearch. You want the maximum, so you would need to invert your function (inverted=@(varargin) -YourFunction(varargin{:});)
RAHUL YADAV
on 19 Aug 2020
Accepted Answer
More Answers (1)
Categories
Find more on Simulink in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

