qiskit-documentation/docs/api/qiskit/1.2/qiskit.pulse.channels.Contr...

61 lines
2.0 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: ControlChannel (v1.2)
description: API reference for qiskit.pulse.channels.ControlChannel in qiskit v1.2
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.pulse.channels.ControlChannel
---
# ControlChannel
<Class id="qiskit.pulse.channels.ControlChannel" isDedicatedPage={true} github="https://github.com/Qiskit/qiskit/tree/stable/1.2/qiskit/pulse/channels.py#L189-L195" signature="qiskit.pulse.channels.ControlChannel(*args, **kwargs)" modifiers="class">
Bases: `PulseChannel`
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** Index of channel.
## Attributes
### index
<Attribute id="qiskit.pulse.channels.ControlChannel.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.
</Attribute>
### name
<Attribute id="qiskit.pulse.channels.ControlChannel.name">
Return the shorthand alias for this channel, which is based on its type and index.
</Attribute>
### parameters
<Attribute id="qiskit.pulse.channels.ControlChannel.parameters">
Parameters which determine the channel index.
</Attribute>
### prefix
<Attribute id="qiskit.pulse.channels.ControlChannel.prefix" attributeTypeHint="str | None" attributeValue="'u'">
A shorthand string prefix for characterizing the channel type.
</Attribute>
## Methods
### is\_parameterized
<Function id="qiskit.pulse.channels.ControlChannel.is_parameterized" github="https://github.com/Qiskit/qiskit/tree/stable/1.2/qiskit/pulse/channels.py#L135-L137" signature="is_parameterized()">
Return True iff the channel is parameterized.
**Return type**
[bool](https://docs.python.org/3/library/functions.html#bool "(in Python v3.13)")
</Function>
</Class>