liboctave: Linear Constraints

 
 9.3 Linear Constraints
 ======================
 
  -- : LinConst (void)
  -- : LinConst (int NCLIN, int NX)
  -- : LinConst (int NCLIN_EQ, int NCLIN_INEQ, int NX)
  -- : LinConst (const ColumnVector &LB, const Matrix &A, const
           ColumnVector &UB)
  -- : LinConst (const Matrix &A_EQ, const ColumnVector &B_EQ, const
           Matrix &A_INEQ, const ColumnVector &B_INEQ)
  -- : LinConst (const LinConst &A)
 
  -- : LinConst& operator = (const LinConst &A)
 
  -- : LinConst& resize (int NCLIN, int N)
 
  -- : Matrix constraint_matrix (void) const;
 
  -- : LinConst& set_constraint_matrix (const Matrix &A)
 
  -- : Matrix eq_constraint_matrix (void) const;
  -- : Matrix ineq_constraint_matrix (void) const;
 
  -- : ColumnVector eq_constraint_vector (void) const;
  -- : ColumnVector ineq_constraint_vector (void) const;
 
  -- : ostream& operator << (ostream &OS, const LinConst &B)