Apply :class:`~qiskit.circuit.library.HGate`. For the full matrix form of this gate, see the underlying gate documentation. Args: qubit: The qubit(s) to apply the gate to. Returns: A handle to the instructions created.
(self, qubit: QubitSpecifier)
| 5156 | return self.append(Delay(duration, unit=unit), [qarg], [], copy=False) |
| 5157 | |
| 5158 | def h(self, qubit: QubitSpecifier) -> InstructionSet: |
| 5159 | """Apply :class:`~qiskit.circuit.library.HGate`. |
| 5160 | |
| 5161 | For the full matrix form of this gate, see the underlying gate documentation. |
| 5162 | |
| 5163 | Args: |
| 5164 | qubit: The qubit(s) to apply the gate to. |
| 5165 | |
| 5166 | Returns: |
| 5167 | A handle to the instructions created. |
| 5168 | """ |
| 5169 | return self._append_standard_gate(StandardGate.H, [qubit], ()) |
| 5170 | |
| 5171 | def ch( |
| 5172 | self, |