convert codes into matlab R2015b
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
close all; clear; clc;
%menentukan opsi optimisasi
options = optimoptions(@fminunc,'Display','iter','Algorithm','quasi-newton');
%menentukan guess value
xy_guess = [0,0];
%memanggil algoritma optimisasi
[xy_opt, fval] = fminunc(@rosenbrock_func,xy_guess,options)
%fungsi objektif
function f = rosenbrock_func(in);
x = in(1);
y = in(2);
f = 100*(y-x^2)^2 + (1-x))^2
end
how can i convert this code into matlab R2015b?
3 comentarios
dpb
el 22 de Mzo. de 2020
What does "it doesn't work" mean, precisely? Show us...
Your code above includes the definition of rosenbrock_func. You must place that code in its m-file of that name in a location on your matlabpath; functions are not defined in the command wlndow inline.
Respuestas (0)
Ver también
Categorías
Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!