qiskit.circuit.ParameterExpression.bind¶
- ParameterExpression.bind(parameter_values, allow_unknown_parameters=False)[fuente]¶
Binds the provided set of parameters to their corresponding values.
- Parámetros
parameter_values (
Dict
) – Mapping of Parameter instances to the numeric value to which they will be bound.allow_unknown_parameters (
bool
) – IfFalse
, raises an error ifparameter_values
contains Parameters in the keys outside those present in the expression. IfTrue
, any such parameters are simply ignored.
- Muestra
CircuitError –
If parameter_values contains Parameters outside those in self. - If a non-numeric value is passed in parameter_values.
ZeroDivisionError –
If binding the provided values requires division by zero.
- Tipo del valor devuelto
- Devuelve
A new expression parameterized by any parameters which were not bound by parameter_values.