how to define connection factors for supply chain for GA/fmincon optimization?

1 visualización (últimos 30 días)
function [Xmd]=checkb(Q) Xmd(1,1)=Q(1);% connection b/w manufacturer 1 and distributer 1 Xmd(2,1)=Q(2);% connection b/w manufacturer 2 and distributer 1 Xmd(3,1)=Q(3);% connection b/w manufacturer 3 and distributer 1 Xmd(1,2)=Q(4);% connection b/w manufacturer 1 and distributer 2 Xmd(2,2)=Q(5);% connection b/w manufacturer 2 and distributer 2 Xmd(3,2)=Q(6);% connection b/w manufacturer 3 and distributer 2
%it should be in binary 0 or 1
  5 comentarios
Alan Weiss
Alan Weiss el 26 de Mayo de 2017
Editada: Alan Weiss el 26 de Mayo de 2017
Please mark your code with the {} Code button so that we can read it. Seriously, I am not going to try to decode your question until you format it properly.
Alan Weiss
MATLAB mathematical toolbox documentation
Aimen Mujahid
Aimen Mujahid el 1 de Jun. de 2017
if true
function [Xmd]=checkb(Q) Xmd(1,1)=Q(1);
Xmd(2,1)=Q(2);
Xmd(3,1)=Q(3);
Xmd(1,2)=Q(4);
Xmd(2,2)=Q(5);
Xmd(3,2)=Q(6);
end
end

Iniciar sesión para comentar.

Respuestas (1)

Alan Weiss
Alan Weiss el 2 de Jun. de 2017
Is that supposed to be an objective function? Your function returns a 3-by-2 matrix that is simply a reshaping of the inputs. An objective function must be scalar-valued, not vector or matrix valued.
If you want to ask about how to write an objective function, see Writing Scalar Objective Functions. If you want to know something else, then please ask more explicitly.
Alan Weiss
MATLAB mathematical toolbox documentation

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!

Translated by