Python Forum
1 dimension Matrix Right Division - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: 1 dimension Matrix Right Division (/thread-1786.html)



1 dimension Matrix Right Division - theo_taison1 - Jan-25-2017

I have 2 matrix, A=[2,5] and B=[ 65,40 ]. In Matlab i can run the right matrix division A/B = 0.0567.
 How can i do it in Python?


RE: 1 dimension Matrix Right Division - stranac - Jan-25-2017

If you want to do calculations with matrices, you'll probably want to take a look at numpy
I don't really know what exactly you need, but it shouldn't be hard to find in the numpy docs.