RFC: add ravel()
(or flatten()
)
#658
Labels
API extension
Adds new functions or objects to the API.
Needs Discussion
Needs further discussion.
RFC
Request for comments. Feature requests and proposed changes.
topic: Manipulation
Array manipulation and transformation.
Should we have a ravel() or flatten() function? Right now you can do it with
reshape
, but it's maybe not obvious.reshape
also has the advantage in that it can be explicit about copying.If not, I wonder if we should have some page or documentation somewhere to indicate the best workarounds for NumPy functions that aren't included in the standard, like "replace
ravel(x)
withreshape(x, (x.size,))
".The text was updated successfully, but these errors were encountered: