About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
DataBin
class qiskit.primitives.DataBin(*, shape=(), **data)
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
- ValueError – If a name overlaps with a method name on this class.
- ValueError – If some value is inconsistent with the provided shape.
Attributes
ndim
shape
size
Methods
items
keys
values
Was this page helpful?
Report a bug or request content on GitHub.