qiskit.ignis.verification.marginal_counts¶
- marginal_counts(counts, meas_qubits=True, pad_zeros=False)[source]¶
Compute marginal counts from a counts dictionary.
- প্যারামিটার
counts (
Dict
[str
,int
]) -- a counts dictionary.meas_qubits (
Union
[bool
,List
[int
]]) -- (default: True) the qubits to NOT be marinalized over if this is True meas_qubits will be all measured qubits.pad_zeros (
bool
) -- (default: False) Include zero count outcomes in return dict.
- রিটার্ন টাইপ
Dict
[str
,int
]- রিটার্নস
A counts dictionary for the specified qubits. The returned dictionary will have any whitespace trimmed from the input counts keys. Thus if meas_qubits=True the returned dictionary will have the same values as the input dictionary, but with whitespace trimmed from the keys.