I have a set of matrices {V_{k,l}}, where k \in \left\{ {1,2, \cdots ,K} \right\} and l \in \left\{ {1,2, \cdots ,L} \right\}. Each {V_{k,l}} is a N*N dimensional matrix. I want to represent it into a cvx variable. I know when only k exists, i can declare it as
variable V(N,N,K) complex semidefinite
But it has two indices k and l. I know i can declare it as
variable V(N,N,KL) complex semidefinite
where KL=K*L, but it is a little inconvenient when i want to extract a V_{k,l} from this variable set V because i need to recover the third dimension of cvx variable V back to the two dimensions k and l. Is there any declaration like
variable V(N,N,K,L) complex semidefinite
maybe exist?