We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5ec2f2 commit 5bc8ebdCopy full SHA for 5bc8ebd
Quantum_Utilities.py
@@ -1,6 +1,8 @@
1
import numpy as np
2
import functools as ft
3
4
+# TODO : Make the logic for Quantum Teleportation and Entanglement Swapping
5
+
6
X = np.array([[0,1], [1,0]]) # Applying a Pauli X gate
7
H = (1/np.sqrt(2))*np.array([[1,1], [1,-1]]) # Applying a Hadamard gate
8
Z = np.array([[1,0], [0,-1]])
0 commit comments