36 lines
960 B
Plaintext
36 lines
960 B
Plaintext
---
|
||
title: set_phase (v0.31)
|
||
description: API reference for qiskit.pulse.builder.set_phase in qiskit v0.31
|
||
in_page_toc_min_heading_level: 1
|
||
python_api_type: function
|
||
python_api_name: qiskit.pulse.builder.set_phase
|
||
---
|
||
|
||
<span id="qiskit-pulse-builder-set-phase" />
|
||
|
||
# qiskit.pulse.builder.set\_phase
|
||
|
||
<Function id="qiskit.pulse.builder.set_phase" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.18/qiskit/pulse/builder.py" signature="set_phase(phase, channel, name=None)">
|
||
Set the `phase` of a pulse `channel`.
|
||
|
||
Examples:
|
||
|
||
```python
|
||
import math
|
||
|
||
from qiskit import pulse
|
||
|
||
d0 = pulse.DriveChannel(0)
|
||
|
||
with pulse.build() as pulse_prog:
|
||
pulse.set_phase(math.pi, d0)
|
||
```
|
||
|
||
**Parameters**
|
||
|
||
* **phase** (`float`) – Phase in radians to set channel carrier signal to.
|
||
* **channel** (`PulseChannel`) – Channel to set phase of.
|
||
* **name** (`Optional`\[`str`]) – Name of the instruction.
|
||
</Function>
|
||
|