PauliTable.insert

PauliTable.insert(ind, value, qubit=False)[source]

Insert Pauli’s into the table.

When inserting qubits the qubit index is the same as the column index of the underlying X and Z arrays.

Parameters
  • ind (int) – index to insert at.

  • value (PauliTable) – values to insert.

  • qubit (bool) – if True delete qubit columns, otherwise delete Pauli rows (Default: False).

Returns

the resulting table with the entries inserted.

Return type

PauliTable

Raises

QiskitError – if the insertion index is invalid.