MCPcopy
hub / github.com/dask/dask / ravel

Method ravel

dask/array/core.py:2227–2238  ·  view source on GitHub ↗

Return a flattened array. Refer to :func:`dask.array.ravel` for full documentation. See Also -------- dask.array.ravel : equivalent function

(self)

Source from the content-addressed store, hash-verified

2225 return transpose(self, axes=axes)
2226
2227 def ravel(self):
2228 """Return a flattened array.
2229
2230 Refer to :func:`dask.array.ravel` for full documentation.
2231
2232 See Also
2233 --------
2234 dask.array.ravel : equivalent function
2235 """
2236 from dask.array.routines import ravel
2237
2238 return ravel(self)
2239
2240 flatten = ravel
2241

Callers 15

normalize_arrayFunction · 0.45
_monotonic_combineFunction · 0.45
_monotonic_aggregateFunction · 0.45
sanitize_indexFunction · 0.45
_arg_combineFunction · 0.45
arg_chunkFunction · 0.45
vdotFunction · 0.45
unique_no_structured_arrFunction · 0.45
uniqueFunction · 0.45
_isin_kernelFunction · 0.45
union1dFunction · 0.45

Calls 1

ravelFunction · 0.90

Tested by 4

test_ravelFunction · 0.36
test_ravel_1D_no_opFunction · 0.36