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

Fix docstring of ZneOptions #2061

Merged
merged 3 commits into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions qiskit_ibm_runtime/options/zne_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ class ZneOptions:
The available options are:

* ``"exponential"``, which fits the data using an exponential decaying function defined
as :math:`f(x; A, \tau) = A e^{-x/\tau}`, where :math:`A = f(0; A, \tau)` is the
value at zero noise (:math:`x=0`\\) and :math:`\tau>0` is a positive rate.
as :math:`f(x; A, \\tau) = A e^{-x/\\tau}`, where :math:`A = f(0; A, \\tau)` is the
value at zero noise (:math:`x=0`) and :math:`\\tau>0` is a positive rate.
* ``"double_exponential"``, which uses a sum of two exponential as in Ref. 1.
* ``"polynomial_degree_(1 <= k <= 7)"``, which uses a polynomial function defined as
:math:`f(x; c_0, c_1, \\ldots, c_k) = \\sum_{i=0, k} c_i x^i`.
Expand Down
Loading