qics.quantum.partial_transpose¶
- qics.quantum.partial_transpose(mat, dims, sys)[source]¶
Performs the partial transpose on a multipartite matrix, e.g., for a bipartite state with
dims=(n0, n1)
, the unique linear map satisfying\[X \otimes Y \mapsto X^\top \otimes Y,\]if
sys=0
, or\[X \otimes Y \mapsto X \otimes Y^\top,\]if
sys=1
, for all \(X,Y\in\mathbb{C}^{n\times n}\).- Parameters:
- Returns:
ndarray
The resulting
(n0*n1*...*nk-1, n0*n1*...*nk-1)
matrix after performing the partial transpose.