qiskit.quantum_info.PauliList.to_labels¶
-
PauliList.
to_labels
(array=False)[source]¶ Convert a PauliList to a list Pauli string labels.
For large PauliLists converting using the
array=True
kwarg will be more efficient since it allocates memory for the full Numpy array of labels in advance.Table 8 Pauli Representations¶ Label
Symplectic
Matrix
"I"
[0,0]
[1001]
"X"
[1,0]
[0110]
"Y"
[1,1]
[0−ii0]
"Z"
[0,1]
[100−1]
- Parameters
array (bool) – return a Numpy array if True, otherwise return a list (Default: False).
- Returns
The rows of the PauliList in label form.
- Return type
list or array