相关题目
单选题
运行下面代码的输出结果为()。
import numpy as np
a=np.array([[10,7,4],[3,2,1]])
print(np.percentile (a,50))
单选题
运行下面代码的输出结果为()。
import numpy as np
a=np.array([[3,7,5],[8,4,3],[2,4,9]])
print(np.ptp (a))
单选题
a=np.arange(1,13,1).reshape(3,4),np.mean(a,axis=0)的输出结果是()。
单选题
np.argmax()函数的作用是()。
单选题
Numpy中对数组进行转置的函数是()。
单选题
np.dot([[1,2,3],[1,2,3],[1,2,3]],[[2,1,1],[2,1,1],[2,1,1]])的输出结果是()。
单选题
np.floor([-1.7,1.5,-0.2,0.6,10])的输出结果是()。
单选题
np.floor()函数的作用是()。
单选题
矩阵相减使用的函数是()。
单选题
若a=np.array([5,1,2,3]),a.sort(),则数组a的结果是()。
