Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add matplotlib inline #139

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
"import random\n",
"import matplotlib.pyplot as plt\n",
"import time\n",
"import os"
"import os\n",
"\n",
"%matplotlib inline"
]
},
{
Expand Down
8 changes: 5 additions & 3 deletions examples/braket_features/Verbatim_Compilation.ipynb

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion examples/getting_started/4_Superdense_coding.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@
"from braket.circuits.instruction import Instruction\n",
"from braket.aws import AwsDevice\n",
"import matplotlib.pyplot as plt\n",
"import time"
"import time\n",
"\n",
"%matplotlib inline"
]
},
{
Expand Down
1,576 changes: 5 additions & 1,571 deletions examples/hybrid_quantum_algorithms/VQE_Chemistry/VQE_chemistry_braket.ipynb

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions examples/pennylane/2_Graph_optimization_with_QAOA.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
"source": [
"import networkx as nx\n",
"\n",
"%matplotlib inline\n",
"\n",
"n_nodes = 6\n",
"p = 0.5 # probability of an edge\n",
"seed = 1967\n",
Expand Down
Loading