R
Setup
Once you have downloaded POGS, open R and type
1 | > setwd("<pogs>/interface_r/") |
in the R console. The string
must be replaced with the directory to which POGS was downloaded. To compile wrapper type1
<pogs>
1 | > install.packages("pogs_1.0.tar.gz", repos = NULL, type="source") |
Make sure to replace
by the latest version number.1
1.0
To load the POGS library type
1 | > library(pogs) |
R-specific usage
The R interface is a single R function, with signature
1 | solution = pogs(A, f, g, params) |
Inputs:
is the data matrix of dimension \( m n \).1
A
and1
f
are lists with fields1
g
,1
h
,1
a
,1
b
,1
c
and1
d
, each of which must either be a vector of dimension \( m \) (resp. \( n \)) or a scalar. If a scalar is specified, then it is assumed that the scalar should be repeated \( m \) (resp. \( n \)) times. Multiple problems can be solved with the same matrix \( A \), if1
e
and1
f
are specified as nested lists.1
g
Optional Inputs:
is a list with fields1
params
,1
rel_tol
,1
abs_tol
,1
rho
,1
max_iter
,1
quiet
.1
adaptive_rho
Outputs:
and1
solution$x
are the solution vectors \(x^\star_\text{pogs}\) resp. \(y^\star_\text{pogs}\), and have dimension \( m \) resp. \( n \). If multiple objectives were specified, then1
solution$y
and1
solution$x
will be matrices of the appropriate dimension.1
solution$y
is the dual variable \(\lambda^\star_\text{pogs}\) corresponding to the constraint \(Ax = y\) and has dimension \( m \).1
solution$l
is the value of the objective \(p^\star_\text{pogs}\) at the solution (\(p^\star_\text{pogs} = f(y^\star_\text{pogs}) + g(x^\star_\text{pogs})\)).1
solution$optval
For more information type
1 | > ?pogs |
\(h\)-Functions
The values
and 1
f$h
can be specified using one of 16 functions. These are1
g$h
1 2 | kAbs, kExp, kHuber, kIdentity, kIndBox01, kIndEq0, kIndGe0, kIndLe0, kLogistic, kMaxNeg0, kMaxPos0, kNegEntr, kNegLog, kRecipr, kSquare, kZero |
For example to specify that \(g_j(x_j) = |x_j|\) for \(j = 1\ldots 4\) and \(g_5(x_5) = I(x_5 = 0)\), use the syntax
1 | > g$h = c(kAbs(4), kIndEq0()) |
Example Usage
See the examples listed on the left-hand side under Examples.