numpy.asanyarray()
numpy.asanyarray
-
numpy.asanyarray(a, dtype=None, order=None)
[source] -
Convert the input to an ndarray, but pass ndarray subclasses through.
Parameters: a : array_like
Input data, in any form that can be converted to an array. This includes scalars, lists, lists of tuples, tuples, tuples of tuples, tuples of lists, and ndarrays.
dtype : data-type, optional
By default, the data-type is inferred from the input data.