I am trying a very basic example in Python scipy module for transpose() method but it\'s not giving expected result. I am using Ipython with pylab mode.
transpose()
You should try: a = array([[1,2,3]]) or a = array([[1],[2],[3]]) , that is, a should be a matrix (row vector, column vector).
a = array([[1,2,3]])
a = array([[1],[2],[3]])
a