qiskit.circuit.ParameterVector¶
-
class
ParameterVector
(name, length=0)[código fonte]¶ ParameterVector class to quickly generate lists of parameters.
-
__init__
(name, length=0)[código fonte]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
(name[, length])Initialize self.
resize
(length)Resize the parameter vector.
Attributes
Returns the name of the ParameterVector.
Returns the list of parameters in the ParameterVector.
-
property
name
¶ Returns the name of the ParameterVector.
-
property
params
¶ Returns the list of parameters in the ParameterVector.
-
resize
(length)[código fonte]¶ Resize the parameter vector.
If necessary, new elements are generated. If length is smaller than before, the previous elements are cached and not re-generated if the vector is enlargened again. This is to ensure that the parameter instances do not change.
-