Korean
언어
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.