Problem in solution from Linprog
이전 댓글 표시
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
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!