Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.

qiskit.chemistry.results.BOPESSamplerResult

class BOPESSamplerResult(points, energies, raw_results)

GitHub

The BOPES Sampler result

Creates an new instance of the result. :type points: List[float] :param points: List of points. :type energies: List[float] :param energies: List of energies. :type raw_results: Dict[float, EigenstateResult] :param raw_results: Raw results obtained from the solver.

__init__

__init__(points, energies, raw_results)

Creates an new instance of the result. :type points: List[float] :param points: List of points. :type energies: List[float] :param energies: List of energies. :type raw_results: Dict[float, EigenstateResult] :param raw_results: Raw results obtained from the solver.


Methods

__init__(points, energies, raw_results)Creates an new instance of the result.
point_results(point)returns all results for a specific point.

Attributes

energiesreturns list of energies.
pointsreturns list of points.
raw_resultsreturns all results for all points.

energies

returns list of energies.

Return type

List[float]

point_results

point_results(point)

returns all results for a specific point.

Return type

EigenstateResult

points

returns list of points.

Return type

List[float]

raw_results

returns all results for all points.

Return type

Dict[float, EigenstateResult]

Was this page helpful?
Report a bug or request content on GitHub.