GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
__qp__.cc File Reference
#include <cmath>
#include <limits>
#include "chol.h"
#include "svd.h"
#include "mx-m-dm.h"
#include "EIG.h"
#include "defun.h"
#include "error.h"
#include "errwarn.h"
#include "ovl.h"
#include "pr-output.h"
#include "utils.h"
Include dependency graph for __qp__.cc:

Go to the source code of this file.

Functions

OCTAVE_EXPORT octave_value_list F__qp__ (const octave_value_list &args, int)
 
static octave_idx_type min_index (const ColumnVector &x)
 
static Matrix null (const Matrix &A, octave_idx_type &rank)
 
static int qp (const Matrix &H, const ColumnVector &q, const Matrix &Aeq, const ColumnVector &beq, const Matrix &Ain, const ColumnVector &bin, int maxit, double rtol, ColumnVector &x, ColumnVector &lambda, int &iter)
 

Function Documentation

◆ F__qp__()

OCTAVE_EXPORT octave_value_list F__qp__ ( const octave_value_list args,
int   
)

Definition at line 493 of file __qp__.cc.

References ovl(), print_usage(), qp(), and x.

◆ min_index()

static octave_idx_type min_index ( const ColumnVector x)
static

Definition at line 49 of file __qp__.cc.

References x.

Referenced by qp().

◆ null()

static Matrix null ( const Matrix A,
octave_idx_type rank 
)
static

Definition at line 61 of file __qp__.cc.

References A, abs(), DiagMatrix::extract_diag(), n, Array< T, Alloc >::numel(), Matrix::resize(), and V.

◆ qp()