摘要: >>> >>> a = np.array([[1,2,3],[4,5,6]]) >>> np.size(a) 6 >>> np.size(a,1) 3 >>> np.size(a,0) 2 1 如果传入的参数只有一个,则返回矩阵的元素个数 如果传入的第二个参数是0,则返回矩阵的行数 如果传入的第二个 阅读全文
posted @ 2021-09-30 16:09 ArdenWang 阅读(254) 评论(0) 推荐(0) 编辑
摘要: np.argwhere( a ) Find the indices of array elements that are non-zero, grouped by element. 返回非0的数组元组的索引,其中a是要索引数组的条件。 返回数组中所有大于1的数字的索引值。 来源:https://bl 阅读全文
posted @ 2021-09-30 16:03 ArdenWang 阅读(263) 评论(0) 推荐(0) 编辑