numpy.matrix.flatten
method
- 
matrix.flatten(order='C')[source]
- 
Return a flattened copy of the matrix. All Nelements of the matrix are placed into a single row.Parameters: - 
order : {‘C’, ‘F’, ‘A’, ‘K’}, optional
- 
‘C’ means to flatten in row-major (C-style) order. ‘F’ means to flatten in column-major (Fortran-style) order. ‘A’ means to flatten in column-major order if mis Fortran contiguous in memory, row-major order otherwise. ‘K’ means to flattenmin the order the elements occur in memory. The default is ‘C’.
 Returns: - 
y : matrix
- 
A copy of the matrix, flattened to a (1, N)matrix whereNis the number of elements in the original matrix.
 Examples>>> m = np.matrix([[1,2], [3,4]]) >>> m.flatten() matrix([[1, 2, 3, 4]]) >>> m.flatten('F') matrix([[1, 3, 2, 4]])
- 
    © 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
    https://docs.scipy.org/doc/numpy-1.16.1/reference/generated/numpy.matrix.flatten.html