qics.vectorize.vec_to_mat

qics.vectorize.vec_to_mat(vec, iscomplex=False, compact=False)[source]

Reshapes a column vector into a symmetric or Hermitian matrix.

If iscomplex=False and compact=False, then this returns the matrix

\[\begin{split}\begin{bmatrix}a & b & d & b & c & e & d & e & f\end{bmatrix}^\top \mapsto \begin{bmatrix}a & b & d \\ b & c & e \\ d & e & f\end{bmatrix}.\end{split}\]

If iscomplex=False and compact=True, then this performs the matrix

\[\begin{split}\begin{bmatrix} a & \sqrt{2} b & c & \sqrt{2} d & \sqrt{2}e & f \end{bmatrix}^{\top}\mapsto \begin{bmatrix}a & b & d \\ b & c & e \\ d & e & f\end{bmatrix}.\end{split}\]

If iscomplex=True and compact=False, then this returns the matrix

\[\begin{split}\begin{bmatrix} a & 0 & b & c & e & f & b & -c & d & 0 & g & h & e & -f & g & -h & k & 0 \end{bmatrix}^{\top}\mapsto \begin{bmatrix} a & b+ci & e+fi \\ b-ci & d & g+hi \\ e-fi & g-hi & k \end{bmatrix}.\end{split}\]

If iscomplex=True and compact=True, then this returns the matrix

\[\begin{split}\begin{bmatrix} a & \sqrt{2} b & \sqrt{2} c & d & \sqrt{2} e & \sqrt{2} f & \sqrt{2} g & \sqrt{2} h & k \end{bmatrix}^{\top}\mapsto \begin{bmatrix} a & b+ci & e+fi \\ b-ci & d & g+hi \\ e-fi & g-hi & k \end{bmatrix}.\end{split}\]
Parameters:
matndarray

Input vector to reshape into a matrix.

iscomplexbool, optional

Whether the resulting matrix is Hermitian (True) or symmetric (False). The default is False.

compactbool, optional

Whether to convert from a compact vector representation or not. The default is False.

Returns:
ndarray

The resulting vector.