qiskit.circuit.ParameterVector¶
-
class
ParameterVector
(name, length=0)[Quellcode]¶ ParameterVector class to quickly generate lists of parameters.
-
__init__
(name, length=0)[Quellcode]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
(name[, length])Initialize self.
index
(value)Returns first index of value.
resize
(length)Resize the parameter vector.
Attributes
Returns the name of the ParameterVector.
Returns the list of parameters in the ParameterVector.
-
index
(value)[Quellcode]¶ Returns first index of value.
-
property
name
¶ Returns the name of the ParameterVector.
-
property
params
¶ Returns the list of parameters in the ParameterVector.
-
resize
(length)[Quellcode]¶ 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 enlarged again. This is to ensure that the parameter instances do not change.
-