summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Erlenstedt <rxy626@gmail.com>2019-11-30 10:39:45 +0100
committerRuben Erlenstedt <rxy626@gmail.com>2019-11-30 10:39:45 +0100
commit1df43952807a0182d5c42f42e97321443ff82a8c (patch)
treec45b7b61cc774f4d57847e42d988b798770ff9b4
parentdbee16a463ba97634c2c41d6e530185b0ec82e78 (diff)
parent8e376a7447310e5e36f69f8e6e3984599ceaef74 (diff)
Merge branch 'master' of keybase://team/entropyy.quantensysteme/dequantify
-rw-r--r--single_dequantify.py3
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]}")