order : {‘C’, ‘F’}, optional
Whether to store multi-dimensional data in C (row-major)
or Fortran (column-major) order in memory. The default
is ‘None’, indicating the NumPy default of C-ordered.
Cannot be specified in conjunction with the out
argument.
out : ndarray, 2-dimensional, optional
If specified, uses this array as the output buffer
instead of allocating a new array to return. The provided
array must have the same shape and dtype as the sparse
matrix on which you are calling the method. For most
sparse types, out is required to be memory contiguous
(either C or Fortran ordered).
|