diff options
-rw-r--r-- | single_dequantify.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/single_dequantify.py b/single_dequantify.py index c7f6ade..c5054f5 100644 --- a/single_dequantify.py +++ b/single_dequantify.py @@ -35,8 +35,7 @@ historie = npy.array([bloch_map(state)]) for i in range(iterations): state = time_evolution(state) h = npy.dot(state, state) - historie = npy.vstack([historie,bloch_map(state)]) - #print(f"{bloch_map(state)[0]}; {bloch_map(state)[1]}") + historie = npy.vstack([historie,bloch_map(state)]) coords = bloch_map(state) coords = sphere2cart(coords[0], coords[1]) print(f"{coords[0]}; {coords[1]}; {coords[2]}") |