Skip to main contentIBM Quantum Documentation

DataBin

class qiskit.primitives.DataBin(*, shape=(), **data)

GitHub(opens in a new tab)

Bases: ShapedMixin

Namespace for storing data.

data = DataBin(
    alpha=BitArray.from_bitstrings(["0010"]),
    beta=np.array([1.2])
)
 
print("alpha data:", data.alpha)
print("beta data:", data.beta)

Parameters

  • data – Name/value data to place in the data bin.
  • shape (ShapeInput) – The leading shape common to all entries in the data bin. This defaults to the trivial leading shape of () that is compatible with all objects.

Raises


Attributes

ndim

shape

size


Methods

items

keys

values

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