Python中的 numpy.asanyarray()
当我们想要将输入转换为数组但它传递ndarray子类时,使用numpy.asanyarray()
函数。输入可以是标量、列表、元组列表、元组、元组元组、列表元组和 ndarray。
Syntax : numpy.asanyarray(arr, dtype=None, order=None)
Parameters :
arr : [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.
order : Whether to use row-major (C-style) or column-major (Fortran-style) memory representation. Defaults to ‘C’.
Return : [ndarray or an ndarray subclass] Array interpretation of arr. If arr is ndarray or a subclass of ndarray, it is returned as-is and no copy is performed.
代码 #1:列表到数组
# Python program explaining
# numpy.asanyarray() function
import numpy as geek
my_list = [1, 3, 5, 7, 9]
print ("Input list : ", my_list)
out_arr = geek.asanyarray(my_list)
print ("output array from input list : ", out_arr)
输出 :
Input list : [1, 3, 5, 7, 9]
output array from input list : [1 3 5 7 9]
代码#2:元组到数组
# Python program explaining
# numpy.asanyarray() function
import numpy as geek
my_tuple = ([1, 3, 9], [8, 2, 6])
print ("Input tuple : ", my_tuple)
out_arr = geek.asanyarray(my_tuple)
print ("output array from input tuple : ", out_arr)
输出 :
Input tuple : ([1, 3, 9], [8, 2, 6])
output array from input tuple : [[1 3 9]
[8 2 6]]
代码#3:标量到数组
# Python program explaining
# numpy.asanyarray() function
import numpy as geek
my_scalar = 12
print ("Input scalar : ", my_scalar)
out_arr = geek.asanyarray(my_scalar)
print ("output array from input scalar : ", out_arr)
print(type(out_arr))
输出 :
Input scalar : 12
output array from input scalar : 12
class 'numpy.ndarray'