diff options
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r-- | numpy/matlib.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/matlib.py b/numpy/matlib.py index 677400367..656ca3458 100644 --- a/numpy/matlib.py +++ b/numpy/matlib.py @@ -11,8 +11,7 @@ __all__ = np.__all__[:] # copy numpy namespace __all__ += ['rand', 'randn', 'repmat'] def empty(shape, dtype=None, order='C'): - """ - Return a new matrix of given shape and type, without initializing entries. + """Return a new matrix of given shape and type, without initializing entries. Parameters ---------- @@ -21,8 +20,9 @@ def empty(shape, dtype=None, order='C'): dtype : data-type, optional Desired output data-type. order : {'C', 'F'}, optional - Whether to store multi-dimensional data in C (row-major) or - Fortran (column-major) order in memory. + Whether to store multi-dimensional data in row-major + (C-style) or column-major (Fortran-style) order in + memory. See Also -------- |