Results from a randomized benchmarking experiment.
cirq.experiments.RandomizedBenchMarkResult(
num_cliffords: Sequence[int],
ground_state_probabilities: Sequence[float]
)
Attributes |
data
|
Returns a sequence of tuple pairs with the first item being a
number of Cliffords and the second item being the corresponding average
ground state probability.
|
Methods
plot
View source
plot(
ax: Optional[plt.Axes] = None,
**plot_kwargs
) -> plt.Axes
Plots the average ground state probability vs the number of
Cliffords in the RB study.
Args |
ax
|
the plt.Axes to plot on. If not given, a new figure is created,
plotted on, and shown.
|
**plot_kwargs
|
Arguments to be passed to 'plt.Axes.plot'.
|
Returns |
The plt.Axes containing the plot.
|