Results from a Rabi oscillation experiment.
cirq.experiments.RabiResult(
rabi_angles: Sequence[float],
excited_state_probabilities: Sequence[float]
)
Attributes |
data
|
Returns a sequence of tuple pairs with the first item being a Rabi
angle and the second item being the corresponding excited state
probability.
|
Methods
plot
View source
plot(
ax: Optional[plt.Axes] = None,
**plot_kwargs
) -> plt.Axes
Plots excited state probability vs the Rabi angle (angle of rotation
around the x-axis).
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.
|