Problem in solution from Linprog
Mostrar comentarios más antiguos
Hi,
I am using linprog to solve for parameters of the following problem -
minimise -a
subject to constraint : a + b*x < y
The parameter estimates that I get from linprog (a & b), should ideally give me errors which are all positive ie
e = y - a -b*x
e > 0, for all y and x
but few of my errors have value -0.0000
how can I get around this problem?
----------------
A = ones(80,1);
f = [-1;0];
options = optimoptions('linprog','Algorithm','simplex')
p_fit=linprog(f,[A xdata],[ydata],[],[],[-Inf -Inf],[],p_initial,options)
-----------------------------------
I have attached data for x and y in an excel file.
Thanks for your help!
Regards, Prachi
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Solver Outputs and Iterative Display en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!