Function: From multiple variables as input to vector input
5 views (last 30 days)
Show older comments
Nicolas Ochmann
on 8 Aug 2017
Commented: Nicolas Ochmann
on 8 Aug 2017
Hi everybody,
I have the following problem: I have a function such as: fun = @(x1,x2)100*(x2-x1^2)^2+(1-x1)^2
However, I need to convert this to the form: fun = @(x)100*(x(2)-x(1)^2)^2+(1-x(1))^2 so that I can use it as the objective function for fmincon.
Does anybody have a clue how this can be done?
Thanks in advance,
Nicolas
0 Comments
Accepted Answer
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!