摘要:
## numpy-线代和矩阵 [TOC] ### 创建(转换)矩阵 一般我们先创建数组,然后将其转化为矩阵 ``` np.mat(data, dtype=None) data: 数据或者数组 dtype: 数据格式 ``` ```python import numpy as np arr1 = np 阅读全文
摘要:
# numpy-选择和过滤 [TOC] ## 查找 ### np,where() 1、不带条件 返回tuple,第一个值是索引,第二个是空值 输入必须是 数组,不能是 list 输入一般是一维,行向量或者列向量都可以 2、带条件 `np.where(condition, x, y)` 满足条件(`c 阅读全文