Hi, 

In Theano I want to divide a matrix X of size 2x3 by a matrix Y of size 2x1 
in the same way as numpy.divide(X, Y) : 

X = numpy.array([[1,2, 3],[4,5,6]])
Y = numpy.array([[1],[3]])
numpy.divide(X, Y)

array([[ 1.        ,  2.        ,  3.        ],
       [ 1.33333333,  1.66666667,  2.        ]])

How can I do this? 

Thanks

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"theano-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to