Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.
Important

IBM Quantum Platform is moving and this version will be sunset on July 1. To get started on the new platform, read the migration guide.

qiskit.pulse.ControlChannel

class ControlChannel(index)

GitHub

Control channels provide supplementary control over the qubit to the drive channel. These are often associated with multi-qubit gate operations. They may not map trivially to a particular qubit index.

Channel class.

Parameters

index (int) – Index of channel.

__init__

__init__(index)

Channel class.

Parameters

index (int) – Index of channel.


Methods

__init__(index)Channel class.
assign(parameter, value)Return a new channel with the input Parameter assigned to value.
is_parameterized()Return True iff the channel is parameterized.

Attributes

indexReturn the index of this channel.
nameReturn the shorthand alias for this channel, which is based on its type and index.
parametersParameters which determine the channel index.
prefix

assign

assign(parameter, value)

Return a new channel with the input Parameter assigned to value.

Parameters

  • parameter (Parameter) – A parameter in this expression whose value will be updated.
  • value (Union[ParameterExpression, float, int]) – The new value to bind to.

Return type

Channel

Returns

A new channel with updated parameters.

Raises

PulseError – If the parameter is not present in the channel.

index

Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance, DriveChannel(0) labels the signal line driving the qubit labeled with index 0.

Return type

Union[int, ParameterExpression]

is_parameterized

is_parameterized()

Return True iff the channel is parameterized.

Return type

bool

name

Return the shorthand alias for this channel, which is based on its type and index.

Return type

str

parameters

Parameters which determine the channel index.

Return type

Set

Was this page helpful?
Report a bug or request content on GitHub.