qiskit.circuit.ParameterExpression¶
-
class
ParameterExpression
(symbol_map, expr)[Quellcode]¶ ParameterExpression class to enable creating expressions of Parameters.
Create a new
ParameterExpression
.Not intended to be called directly, but to be instantiated via operations on other
Parameter
orParameterExpression
objects.- Parameter
symbol_map (Dict[Parameter, [ParameterExpression, float, or int]]) – Mapping of
Parameter
instances to thesympy.Symbol
serving as their placeholder in expr.expr (sympy.Expr) – Expression of
sympy.Symbol
s.
-
__init__
(symbol_map, expr)[Quellcode]¶ Create a new
ParameterExpression
.Not intended to be called directly, but to be instantiated via operations on other
Parameter
orParameterExpression
objects.- Parameter
symbol_map (Dict[Parameter, [ParameterExpression, float, or int]]) – Mapping of
Parameter
instances to thesympy.Symbol
serving as their placeholder in expr.expr (sympy.Expr) – Expression of
sympy.Symbol
s.
Methods
__init__
(symbol_map, expr)Create a new
ParameterExpression
.arccos
()Arccos of a ParameterExpression
arcsin
()Arcsin of a ParameterExpression
arctan
()Arctan of a ParameterExpression
assign
(parameter, value)Assign one parameter to a value, which can either be numeric or another parameter expression.
bind
(parameter_values)Binds the provided set of parameters to their corresponding values.
Return the conjugate.
cos
()Cosine of a ParameterExpression
exp
()Exponential of a ParameterExpression
gradient
(param)Get the derivative of a parameter expression w.r.t.
log
()Logarithm of a ParameterExpression
sin
()Sine of a ParameterExpression
subs
(parameter_map)Returns a new Expression with replacement Parameters.
tan
()Tangent of a ParameterExpression
Attributes
Returns a set of the unbound Parameters in the expression.
-
arccos
()[Quellcode]¶ Arccos of a ParameterExpression
-
arcsin
()[Quellcode]¶ Arcsin of a ParameterExpression
-
arctan
()[Quellcode]¶ Arctan of a ParameterExpression
-
assign
(parameter, value)[Quellcode]¶ Assign one parameter to a value, which can either be numeric or another parameter expression.
- Parameter
parameter (Parameter) – A parameter in this expression whose value will be updated.
value (
Union
[ParameterExpression
,float
,int
]) – The new value to bind to.
- Rückgabetyp
ParameterExpression
- Rückgabe
A new expression parameterized by any parameters which were not bound by assignment.
-
bind
(parameter_values)[Quellcode]¶ Binds the provided set of parameters to their corresponding values.
- Parameter
parameter_values (
Dict
) – Mapping of Parameter instances to the numeric value to which they will be bound.- Verursacht
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.
- Rückgabetyp
ParameterExpression
- Rückgabe
A new expression parameterized by any parameters which were not bound by parameter_values.
-
conjugate
()[Quellcode]¶ Return the conjugate.
- Rückgabetyp
ParameterExpression
-
cos
()[Quellcode]¶ Cosine of a ParameterExpression
-
exp
()[Quellcode]¶ Exponential of a ParameterExpression
-
gradient
(param)[Quellcode]¶ Get the derivative of a parameter expression w.r.t. a specified parameter expression.
- Parameter
param (Parameter) – Parameter w.r.t. which we want to take the derivative
- Rückgabetyp
Union
[ParameterExpression
,float
]- Rückgabe
ParameterExpression representing the gradient of param_expr w.r.t. param
-
log
()[Quellcode]¶ Logarithm of a ParameterExpression
-
property
parameters
¶ Returns a set of the unbound Parameters in the expression.
- Rückgabetyp
Set
-
sin
()[Quellcode]¶ Sine of a ParameterExpression
-
subs
(parameter_map)[Quellcode]¶ Returns a new Expression with replacement Parameters.
- Parameter
parameter_map (
Dict
) – Mapping from Parameters in self to the ParameterExpression instances with which they should be replaced.- Verursacht
CircuitError –
If parameter_map contains Parameters outside those in self. - If the replacement Parameters in parameter_map would result in a name conflict in the generated expression.
- Rückgabetyp
ParameterExpression
- Rückgabe
A new expression with the specified parameters replaced.
-
tan
()[Quellcode]¶ Tangent of a ParameterExpression