Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Write an RX-based Rabi experiment as a test #285

Open
stylewarning opened this issue Nov 23, 2021 · 0 comments
Open

Write an RX-based Rabi experiment as a test #285

stylewarning opened this issue Nov 23, 2021 · 0 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@stylewarning
Copy link
Member

Write a test which does a Rabi experiment and a sine-curve fit on successive RX angles. Something like:

data = []
angles = linspace([0, 2pi], 25)
num_shots = 100
for angle in angles:
    p = RX(angle) 0
    histogram = qvm(p, shots=num_shots)
    data += histogram[1]/num_shots
fit, error = fit_sinusoid(angles, data)
assert error < some_threshold

Intention is to emulate a somewhat common experimental setup.

@stylewarning stylewarning added enhancement New feature or request good first issue Good for newcomers labels Nov 23, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant