Python Forum

Full Version: 1 dimension Matrix Right Division
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
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.