How do I optimize a function?

 采纳的回答

The optimisation routines need vector input for the parameters. I combine them as vector ‘p’ here.
Try this:
x0 = [0.5; 500];
[x, fval] = fmincon(@(p) -launch(p(1),p(2)), x0, [],[],[],[], [0.11 15], [1 1310])
Note that the optimisation functions minimise the function output, so to maximise it, you need to negate the the function.
When I ran your function, I got:
x =
893.8695e-003
473.4764e+000
fval =
-38.4141e+000
So ‘m2=0.89’, ‘k2=473’, producing a distance of 38.4.
You may need to experiment to get the result you want. See the documentation for fmincon for details on what it can do.

2 个评论

Walle Walhood’s Answer moved here —
So, the fval is a negative number.? is there a way to limit the output make sure it is a positive number?
Also, thank you very much for your help
My pleasure.
Since I negated the function in order to maximise it, fval will be negative. Just remove the minus sign to get the correct result.
If my Answer helped you solve your problem, please Accept it!

请先登录,再进行评论。

更多回答(1 个)

Walle Walhood
Walle Walhood 2017-12-11

0 个投票

I sure will, Thanks again!

1 个评论

As always, my pleasure!
Also, you can run your function with the optimised variables to get the ‘positive’ distance.

请先登录,再进行评论。

类别

标签

Community Treasure Hunt

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

Start Hunting!

Translated by