I wish to use fmincon to solve a linear optimization problem formulated as :
v and at are random parameters approximateb by S scenarios.
p is the parobability of each scenario.
wt,xt,yt,zt,Wm and Ym are the problem variables.
I wonder how to set up the model especially the objective function ?(the parameter p and a are defined elsewhere by a script). I implemented the deterministic formulation of the problem as :
min f(x) such that :
Aeq.x = beq
lb<= x <=ub
Is it the same with the stochastic version?
Thanks.