Skip to content

Commit

Permalink
changed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gadhvirushiraj committed Oct 26, 2024
1 parent cd6f5c6 commit 975445b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions doc/source/qip-basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ QuTiP-QIP offers three distinct methods for visualizing quantum circuits. Below
qc.add_gate("ISWAP", targets=[0,1])
qc.add_measurement("M0", targets=1, classical_store=0)

qc.draw("matplotlib", dpi=300, fig_width=4)
qc.draw("matplotlib", dpi=300)

**Customization Examples**:

Expand All @@ -309,7 +309,7 @@ QuTiP-QIP offers three distinct methods for visualizing quantum circuits. Below
qc.add_gate("ISWAP", targets=[0,1])
qc.add_measurement("M0", targets=1, classical_store=0)

qc.draw("matplotlib", bulge=False, theme='dark', title="Plotting Quantum Circuit", dpi=300, fig_width=4)
qc.draw("matplotlib", bulge=False, theme='dark', title="Plotting Quantum Circuit", dpi=300)

..
_To further explore the customization examples, refer to `tutorial notebook <link to tutorial notebook>`.
Expand Down Expand Up @@ -341,10 +341,6 @@ QuTiP-QIP offers three distinct methods for visualizing quantum circuits. Below
- Padding between the gate and the gate label.
* - ``label_pad : float = 0.1``
- Padding between the wire label and the wire.
* - ``fig_height : Optional[float] = None``
- Height of the figure.
* - ``fig_width : Optional[float] = 10``
- Width of the figure.
* - ``bulge : Union[str, bool] = True``
- Bulge style of the gate. Renders non-bulge gates if False.
* - ``align_layer : bool = False``
Expand Down

0 comments on commit 975445b

Please sign in to comment.