qics.cones.OpPerspecTr

class qics.cones.OpPerspecTr(n, func, iscomplex=False)[source]

A class representing a trace operator perspective epigraph cone

OPTn,g=cl{(t,X,Y)R×H++n×H++n:ttr[Pg(X,Y)]},

for an operator concave function g:(0,)R, where

Pg(X,Y)=X1/2g(X1/2YX1/2)X1/2,

is the operator perspective of g.

Parameters:
nint

Dimension of the matrices X and Y.

funcstring or float

Choice for the function g. Can be defined in the following ways.

  • g(x)=log(x) if func="log"

  • g(x)=xp if func=p is a float where p(0,1)

  • g(x)=xp if func=p is a float where p[1,0)(1,2)

iscomplexbool

Whether the matrices X and Y are defined over Hn (True), or restricted to Sn (False). The default is False.

See also

OpPerspecEpi

Operator perspective epigraph

Notes

We do not support operator perspectives for p=0, p=1, and p=2 as these functions are more efficiently modelled using just the positive semidefinite cone.

  • When g(x)=x0, Pg(X,Y)=X.

  • When g(x)=x1, Pg(X,Y)=Y.

  • When g(x)=x2, Pg(X,Y)=YX1Y, which can be modelled using the Schur complement lemma, i.e., if X0, then

    [XYYT]0TYX1Y.