qiskit.ignis.characterization.RabiFitter¶
-
class
RabiFitter
(backend_result, xdata, qubits, fit_p0, fit_bounds=None)[ソース]¶ Rabi Experiment fitter
See BaseCalibrationFitter __init__
fit_po is [amp, freq, phase, offset]
-
__init__
(backend_result, xdata, qubits, fit_p0, fit_bounds=None)[ソース]¶ See BaseCalibrationFitter __init__
fit_po is [amp, freq, phase, offset]
Methods
__init__
(backend_result, xdata, qubits, fit_p0)See BaseCalibrationFitter __init__
add_data
(results[, recalc, refit])Add new execution results to previous execution results
fit_data
([qid, p0, bounds, series])Fit the curve.
guess_params
([qind])Guess fit parameters for rabi oscillation data
pi2_amplitude
([qind])Return the pi/2 amplitude from the fit
pi_amplitude
([qind])Return the pi amplitude from the fit
plot
(qind[, series, ax, show_plot])Plot the data and fit
Attributes
Return the execution results
Return the fitter’s purpose, e.g.
Return the function used in the fit, e.g.
Return the indices of the qubits to be characterized
Return the fit function parameters that were calculated by curve_fit
Return the error of the fit function parameters
Return the list of series for the data
Return the data points on the x-axis, the independenet parameter which is fit against
Return the data points on the y-axis
-
add_data
(results, recalc=True, refit=True)¶ Add new execution results to previous execution results
- パラメータ
results (
Union
[Result
,List
[Result
]]) – new execution resultsrecalc (
bool
) – whether tp recalculate the datarefit (
bool
) – whether to refit the data
-
property
backend_result
¶ Return the execution results
- 戻り値の型
Union
[Result
,List
[Result
]]
-
property
description
¶ Return the fitter’s purpose, e.g. 『T1』
- 戻り値の型
str
-
fit_data
(qid=- 1, p0=None, bounds=None, series=None)¶ Fit the curve.
Compute self._params and self._params_err
- パラメータ
qid (
int
) – qubit for fitting. If -1 fit for all the qubitsp0 (
Optional
[List
[float
]]) – initial guess, equivalent to p0 in scipy.optimizebounds (
Optional
[Tuple
[List
[float
],List
[float
]]]) – bounds, equivalent to bounds in scipy.optimizeseries (
Optional
[str
]) – series to fit (if None fit all)
-
property
fit_fun
¶ Return the function used in the fit, e.g. BaseFitter._exp_fit_fun
- 戻り値の型
Callable
-
guess_params
(qind=0)[ソース]¶ Guess fit parameters for rabi oscillation data
- パラメータ
qind (int) – qubit index to guess fit parameters for
- 戻り値
- List of fit guess parameters
[amp, freq, phase, offset]
- 戻り値の型
list
-
property
measured_qubits
¶ Return the indices of the qubits to be characterized
- 戻り値の型
List
[int
]
-
property
params
¶ Return the fit function parameters that were calculated by curve_fit
- 戻り値の型
List
[float
]
-
property
params_err
¶ Return the error of the fit function parameters
- 戻り値の型
List
[float
]
-
pi2_amplitude
(qind=- 1)[ソース]¶ Return the pi/2 amplitude from the fit
- パラメータ
qind (int) – qubit index
- 戻り値
\(\frac{\pi}{2}\) amp
- 戻り値の型
float
-
pi_amplitude
(qind=- 1)[ソース]¶ Return the pi amplitude from the fit
- パラメータ
qind (int) – qubit index
- 戻り値
\(\pi\) amp
- 戻り値の型
float
-
plot
(qind, series='0', ax=None, show_plot=False)[ソース]¶ Plot the data and fit
- パラメータ
qind (int) – qubit index
series (str) – data series to plot (for rabi data always 『0』)
ax (Axes) – matploblib axes (if none created)
show_plot (bool) – do plot.show
- 戻り値
Plot axes
- 戻り値の型
Axes
-
property
series
¶ Return the list of series for the data
- 戻り値の型
Optional
[List
[str
]]
-
property
xdata
¶ Return the data points on the x-axis, the independenet parameter which is fit against
- 戻り値の型
Union
[List
[float
],array
]
-
property
ydata
¶ Return the data points on the y-axis
The data points are returning in the form of a list of dictionaries:
- ydata[i][『mean』] is a list, where item
no. j is the probability of success of qubit i for a circuit that lasts xdata[j].
- ydata[i][『std』] is a list, where ydata[『std』][j] is the
standard deviation of the success of qubit i.
- 戻り値の型
List
[Dict
]
-