Japanese
言語
English
Bengali
French
German
Japanese
Korean
Portuguese
Spanish
Tamil

qiskit.result.Result.get_counts

Result.get_counts(experiment=None)[ソース]

Get the histogram data of an experiment.

パラメータ

experiment (str or QuantumCircuit or Schedule or int or None) – the index of the experiment, as specified by data([experiment]).

戻り値

a dictionary or a list of dictionaries. A dictionary has the counts for each qubit with the keys containing a string in binary format and separated according to the registers in circuit (e.g. 0100 1110). The string is little-endian (cr[0] on the right hand side).

戻り値の型

dict[str, int] or list[dict[str, int]]

例外

QiskitError – if there are no counts for the experiment.