cirq.pauli_expansion

Returns coefficients of the expansion of val in the Pauli basis.

val The value whose Pauli expansion is to returned.
default Determines what happens when val does not have methods that allow Pauli expansion to be obtained (see below). If set, the value is returned in that case. Otherwise, TypeError is raised.
atol Ignore coefficients whose absolute value is smaller than this.

If val has a _pauliexpansion method, then its result is returned. Otherwise, if val has a small unitary then that unitary is expanded in the Pauli basis and coefficients are returned. Otherwise, if default is set to None or other value then default is returned. Otherwise, TypeError is raised.

TypeError If val has none of the methods necessary to obtain its Pauli expansion and no default value has been provided.