首页 > 代码库 > Python中怎样统计两个向量对应位置的非0元素个数??
Python中怎样统计两个向量对应位置的非0元素个数??
首先看看矩阵中.A操作的结果
1 >>> a=mat([[1,2,3],[2,3,0]]); 2 >>> a 3 matrix([[1, 2, 3], 4 [2, 3, 0]]) 5 >>> a.A 6 array([[1, 2, 3], 7 [2, 3, 0]]) 8 >>> shape(a) 9 (2, 3)10 >>> shape(a.A)11 (2, 3)12 >>> type(a)13 <class ‘numpy.matrixlib.defmatrix.matrix‘>14 >>> type(a.A)15 <class ‘numpy.ndarray‘>
nonzero()将布尔数组转换成一组整数数组,然后使用整数数组进行下标运算;
1 >>> a=mat(([False, True, True],[True, True,False]))2 >>> a3 matrix([[False, True, True],4 [ True, True, False]], dtype=bool)5 >>> nonzero(a)6 (matrix([[0, 0, 1, 1]], dtype=int32), matrix([[1, 2, 0, 1]], dtype=int32))
>>> nonzero(a)[0]
matrix([[0, 0, 1, 1]], dtype=int32)
Python中怎样统计两个向量对应位置的非0元素个数??
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。