摘要: 第一种用法 np.where(conditions,x,y) if (condituons成立): 数组变x else: 数组变y import numpy as np ''' x = np.random.randn(4,4) print(np.where(x>0,2,-2)) #试试效果 xarr 阅读全文
posted @ 2016-12-03 18:24 cqdef_xxx 阅读(24295) 评论(0) 推荐(0) 编辑