How do I optimize a function?

 Accepted Answer

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 Comments

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!

Sign in to comment.

More Answers (1)

Walle Walhood
Walle Walhood on 11 Dec 2017
I sure will, Thanks again!

1 Comment

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

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!