Let us have a linear system Ax<= b. To find a vertex of this polyhedral set we need to choose m linearly independent columns of A and solve the system with the corresponding variables. How can I generate all the m-linearly-independent columns using MATLAB? I will then find all the vertices of the polyhedron I have.
What I can think about is: generate all the (n, m) combination of subsets. Check one by one ranks. Whenever the ranks are =m, take these solutions since they have full m-rank. Is there a more efficient method?
To find the linearly independent column you can use
eig
orqr
.for
eig
the eigenvalues equal to zero will indicate the non independent columsfor
qr
the zeros on the diagonal of R matrix will indicate the non independent columsfor example:
qr
givesand
eig
gives