qiskit.ignis.characterization.ZZFitter¶
-
class
ZZFitter
(backend_result, xdata, qubits, spectators, fit_p0, fit_bounds, time_unit='micro-seconds')[소스]¶ ZZ fitter
-
__init__
(backend_result, xdata, qubits, spectators, fit_p0, fit_bounds, time_unit='micro-seconds')[소스]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
ZZ_rate
([qind])Return the ZZ rate from the fit of the two curves
__init__
(backend_result, xdata, qubits, …)Initialize self.
add_data
(results[, recalc, refit])Add new execution results to previous execution results
fit_data
([qid, p0, bounds, series])Fit the curve.
plot
(qind, series[, ax, show_plot])Plot coherence data.
plot_ZZ
(qind[, ax, show_plot])Plot ZZ data.
time
([qid, series])Return the characteristic time for the given qubit and series
time_err
([qid, series])Return the error of characteristic time for the given qubit and series
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
-
ZZ_rate
(qind=- 1)[소스]¶ Return the ZZ rate from the fit of the two curves
- 매개변수
qind (int) – qubit index to return (-1 return all)
- 반환값
a list of zz_rates
- 반환 형식
list
-
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
-
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
]
-
plot
(qind, series, ax=None, show_plot=True)¶ Plot coherence data.
- 매개변수
qind (
int
) – qubit index to plotseries (
str
) – which series to plot (if list then plot multiple)ax (
Optional
[Any
]) – plot axesshow_plot (
bool
) – whether to call plt.show()
- 반환값
The axes object
- 반환 형식
Axes
- 예외
ImportError – if matplotlib is not installed
-
plot_ZZ
(qind, ax=None, show_plot=False)[소스]¶ Plot ZZ data. Will plot both traces on the plot.
- 매개변수
qind (int) – qubit index to plot
ax (Axes) – plot axes
show_plot (bool) – call plt.show()
- 반환값
the axes object
- 반환 형식
Axes
- 예외
ImportError – If matplotlib is not installed
-
property
series
¶ Return the list of series for the data
- 반환 형식
Optional
[List
[str
]]
-
time
(qid=- 1, series='0')¶ Return the characteristic time for the given qubit and series
- 매개변수
qid (
int
) – the qubit index (or all qubits if -1)series (
str
) – the series to get
- 반환 형식
Union
[float
,List
[float
]]- 반환값
The characteristic time of the qubit, or all qubits
-
time_err
(qid=- 1, series='0')¶ Return the error of characteristic time for the given qubit and series
- 매개변수
qid (
int
) – the qubit index (or all qubits if -1)series (
str
) – the series to get
- 반환 형식
Union
[float
,List
[float
]]- 반환값
The error of the characteristic time of the qubit, or all qubits
-
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
]
-