Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.ignis.characterization.AngleCalCXFitter

class AngleCalCXFitter(backend_result, xdata, qubits, fit_p0, fit_bounds)[ソース]

Amplitude error fitter

See BaseFitter __init__

__init__(backend_result, xdata, qubits, fit_p0, fit_bounds)[ソース]

See BaseFitter __init__

Methods

__init__(backend_result, xdata, qubits, …)

See BaseFitter __init__

add_data(results[, recalc, refit])

Add new execution results to previous execution results

angle_err([qind])

Return the gate angle error

fit_data([qid, p0, bounds, series])

Fit the curve.

plot(qind[, series, ax, show_plot])

Plot err data.

Attributes

backend_result

Return the execution results

description

Return the fitter’s purpose, e.g.

fit_fun

Return the function used in the fit, e.g.

measured_qubits

Return the indices of the qubits to be characterized

params

Return the fit function parameters that were calculated by curve_fit

params_err

Return the error of the fit function parameters

series

Return the list of series for the data

xdata

Return the data points on the x-axis, the independenet parameter which is fit against

ydata

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 results

  • recalc (bool) – whether tp recalculate the data

  • refit (bool) – whether to refit the data

angle_err(qind=- 1)[ソース]

Return the gate angle error

パラメータ

qind (int) – qubit index to return (-1 return all)

戻り値

a list of errors

戻り値の型

list

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 qubits

  • p0 (Optional[List[float]]) – initial guess, equivalent to p0 in scipy.optimize

  • bounds (Optional[Tuple[List[float], List[float]]]) – bounds, equivalent to bounds in scipy.optimize

  • series (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='0', ax=None, show_plot=False)[ソース]

Plot err data.

パラメータ
  • qind (int) – qubit index to plot

  • series (str) – the series 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]]

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]