Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Aimen Mujahid
Aimen Mujahid le 25 Mai 2017
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 commentaires
Alan Weiss
Alan Weiss le 26 Mai 2017
Modifié(e) : Alan Weiss le 26 Mai 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 le 1 Juin 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

Connectez-vous pour commenter.

Réponses (1)

Alan Weiss
Alan Weiss le 2 Juin 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

Community Treasure Hunt

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

Start Hunting!

Translated by