Problem in solution from Linprog
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Solver Outputs and Iterative Display in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!