pyart.correct.phase_proc.LP_solver_cvxopt

pyart.correct.phase_proc.LP_solver_cvxopt(A_Matrix, B_vectors, weights, solver='glpk')[source]

Solve the Linear Programming problem given in Giangrande et al, 2012 using the CVXOPT module.

Parameters :

A_Matrix : matrix

Row augmented A matrix, see construct_A_matrix

B_vectors : matrix

Matrix containing B vectors, see construct_B_vectors

weights : array

Weights.

solver : str or None

LP solver backend to use, choices are ‘glpk’, ‘mosek’ or None to use the conelp function in CVXOPT. ‘glpk’ and ‘mosek’ are only available if they are installed and CVXOPT was build with the correct bindings.

Returns :

soln : array

Solution to LP problem.

See also

LP_solver_pyglpk
Solve LP problem using the PyGLPK module.

Previous topic

pyart.correct.phase_proc.construct_B_vectors

Next topic

pyart.correct.phase_proc.LP_solver_pyglpk

This Page