We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Write a test which does a Rabi experiment and a sine-curve fit on successive RX angles. Something like:
Intention is to emulate a somewhat common experimental setup.
The text was updated successfully, but these errors were encountered: