Importing BraketLab¶
When running a typical BraketLab-session, you'll likely want to do module import as follows:
In [3]:
Copied!
import numpy as np
import matplotlib.pyplot as plt
import braketlab as bk
# enable interactive matplolib
%matplotlib notebook
import numpy as np
import matplotlib.pyplot as plt
import braketlab as bk
# enable interactive matplolib
%matplotlib notebook
You will then be able to use all BraketLab-functionality under the bk
-namespace.