Qiskit:'no counts for experiment'
Qiskit: 'no counts for experiment'
尽管我导入了 plot_histogram
,但我没有得到预期的输出。这是我的代码:
a = QuantumCircuit(1)
a.z(0)
a.x(0)
a.h(0)
a.sdg(0)
a.t(0)
backend = Aer.get_backend('qasm_simulator')
result = execute(a, backend).result()
counts = result.get_counts()
plot_histogram(counts)
print(c)```
您缺少测量数据。
a.z(0)
a.x(0)
a.h(0)
a.sdg(0)
a.t(0)
a.measure_all(). #<--
...
这将测量量子位并用结果设置一个经典寄存器。
尽管我导入了 plot_histogram
,但我没有得到预期的输出。这是我的代码:
a = QuantumCircuit(1)
a.z(0)
a.x(0)
a.h(0)
a.sdg(0)
a.t(0)
backend = Aer.get_backend('qasm_simulator')
result = execute(a, backend).result()
counts = result.get_counts()
plot_histogram(counts)
print(c)```
您缺少测量数据。
a.z(0)
a.x(0)
a.h(0)
a.sdg(0)
a.t(0)
a.measure_all(). #<--
...
这将测量量子位并用结果设置一个经典寄存器。