.T in NumPy: Meaning?
Here’s what the .T in NumPy means: .T is the returned transposed array with its axes permuted that is used in NumPy. It is the same as calling self.transpose(). When you use .T, you must have at least 2 arrays to work with. Having only 1 array is ineffective. This is a standard matrix transpose … Read more