Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12 lignes
200B

  1. import chp
  2. import numpy as np
  3. chp.init(5)
  4. chp.act_hadamard(0)
  5. chp.act_cnot(0, 1)
  6. chp.act_phase(0)
  7. for key, value in chp.get_ket().items():
  8. print bin(key), np.exp(1j * value * np.pi/2).round(2)