Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.circuit.Parameter

class Parameter(name)[ソース]

Parameter Class for variable parameters.

Create a new named Parameter.

パラメータ

name (str) – name of the Parameter, used for visual representation. This can be any unicode string, e.g. 「ϕ」.

__init__(name)[ソース]

Create a new named Parameter.

パラメータ

name (str) – name of the Parameter, used for visual representation. This can be any unicode string, e.g. 「ϕ」.

Methods

__init__(name)

Create a new named Parameter.

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.

conjugate()

Return the conjugate, which is the ParameterExpression itself, since it is real.

subs(parameter_map)

Substitute self with the corresponding parameter in parameter_map.

Attributes

name

Returns the name of the Parameter.

parameters

Returns a set of the unbound Parameters in the expression.

assign(parameter, value)

Assign one parameter to a value, which can either be numeric or another parameter expression.

パラメータ
  • parameter (Parameter) – A parameter in this expression whose value will be updated.

  • value (Union[ParameterExpression, float, int]) – The new value to bind to.

戻り値の型

ParameterExpression

戻り値

A new expression parameterized by any parameters which were not bound by assignment.

bind(parameter_values)

Binds the provided set of parameters to their corresponding values.

パラメータ

parameter_values (Dict) – Mapping of Parameter instances to the numeric value to which they will be bound.

例外
  • 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.

戻り値の型

ParameterExpression

戻り値

A new expression parameterized by any parameters which were not bound by parameter_values.

conjugate()

Return the conjugate, which is the ParameterExpression itself, since it is real.

戻り値の型

ParameterExpression

property name

Returns the name of the Parameter.

property parameters

Returns a set of the unbound Parameters in the expression.

戻り値の型

Set

subs(parameter_map)[ソース]

Substitute self with the corresponding parameter in parameter_map.