Dec-05-2019, 12:45 PM
Can anyone advise on how to use the Scipy TensorProduct function in Python 2.7 without having to explicitly indicate the full sequence of objects to take the product of. Below you can see one of my attempts. But the tensor products are still not coinciding, hence I am still having to write out the full sequence to get the correct answer.
import scipy
from numpy import*
import math
from sympy import I, Matrix, symbols
from sympy.physics.quantum import TensorProduct
N = 3
x = array([1/(math.sqrt(2)),1/(math.sqrt(2))])
V =[]
for i in range(1,N+1):
V.append(x)
V = array(V)
TP1 = TensorProduct(V[0],V[1],V[2])
TP2 = TensorProduct(V[:])
print TP1
print TP2Thanks for any assistance.
