Minimisation of function that contains vectors as constants
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
abaza
el 26 de Abr. de 2017
I am very new in minimization via Matlab! I would like your advice about how to minimise a specific function to be equal to the values of a vector. My function is:
objfun = @(x)(((x(1) .* exp((x(2) .* k + imag((((x(3) .* F)) .* k) + x(4)))))) == KK)
[x,Fval] = fminsearch(objfun,[1,2,2,40],options);
Namely I would like to minimise the objfun to be equal to KK, where KK is a vector of size 130x1.
But also, F and k are vectors of size 130x1.
As I said I am very new at minimisation by Matlab and I do not know how to solve and express this!!! Should it be in a loop? When I am trying a loop (e.g. for i=1:130), I get every time the initial values as result! I would like to thank you in advance for any help and I am very sorry if this looks very silly to you!
0 comentarios
Respuesta aceptada
Stephen23
el 26 de Abr. de 2017
Editada: Stephen23
el 26 de Abr. de 2017
When you calculate the equivalence like this
(...)==KK
then the output can have only two possible values: true or false. This is not enough information for an optimization routine, which needs to be able to figure out how far away from the solution it is, and in what direction it should change the x values. To do this you need to give the difference, because the difference tells the optimization routine how different the current function and KK values are. Then it will adjust the x values to reduce this difference.
objfun = @(x)(x(1) .* exp(x(2) .* k + imag(((x(3) .* F) .* k) + x(4)))) - KK;
[x,Fval] = fminsearch(objfun,[1,2,2,40],options);
Más respuestas (1)
Ver también
Categorías
Más información sobre Get Started with Optimization Toolbox 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!