primal-dual interior- point methods for linear problems

7 ビュー (過去 30 日間)
Lukas Müller
Lukas Müller 2018 年 12 月 5 日
回答済み: Torsten 2018 年 12 月 6 日
Hi,
I would like to write an algorithm in matlab and I have a problem. I hope you can help me.
The algorithm is supposed to solve linear programm min c'x s.t. Ax=b, with A being a sparse matrix (for example dimension 153x366).
First some definitions
A \in R^(mxn), b \in R^m, c \in R^n, y \in R^m, x \in R^n, s \in R^n
F={(x,y,s) | Ax=b, A'y+s=c,x>0,s>0}
A,b,c are given
In the first step I have to find a starting point
(x0,y0,s0) \in F
I found a way to receive an infeasible starting point that holds x>0,s>0, but with this starting point the algorithm doesn't terminate and runs on forever.
Is there a way for Matlab to find (x0,y0,s0) \in F ?
Tanks for your help in advance.

採用された回答

Torsten
Torsten 2018 年 12 月 6 日
Use "linprog" with objective function min: 0'*x.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Least Squares についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by