How can I install Optimization toolbox?

808 vues (au cours des 30 derniers jours)
Ritesh Khan
Ritesh Khan le 31 Mar 2020
Commenté : Steven Lord le 27 Mar 2024 à 3:20
function F =fun(x)
F(1) = exp(-exp(-(x(1)+x(2)))) - x(2)*(1+x(1)^2);
F(2) = x(1)*cos(x(2)) + x(2)*sin(x(1)) - 0.5;
end
command box
>> x0=[0;0];
>> fsolve(@(x) fun(x),x0)
'fsolve' requires Optimization Toolbox.
Why this is happening?

Réponses (3)

Sai Bhargav Avula
Sai Bhargav Avula le 1 Avr 2020
Hi,
If you have license for the toolbox you can refer the following link for installation:
Hope this helps!
  1 commentaire
Faezeh Zarrin Khat
Faezeh Zarrin Khat le 21 Fév 2022
That helped a lot, thank you!

Connectez-vous pour commenter.


phannatus
phannatus le 25 Mar 2024 à 3:20

Jose Manuel Gabeiras Vazquez
Jose Manuel Gabeiras Vazquez le 27 Mar 2024 à 0:07
How can I install fsolve?
  1 commentaire
Steven Lord
Steven Lord le 27 Mar 2024 à 3:20
The fsolve function is part of Optimization Toolbox. You can check if you have this toolbox installed by running the ver command and looking for a line starting with "Optimization Toolbox" in the displayed output.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by