矩阵库 (numpy.matlib)

该模块包含 numpy 命名空间中的所有函数, 以下返回 矩阵open in new window 而不是 ndarraysopen in new window的替换函数。

也在numpy命名空间中的函数并返回矩阵

methoddescription
matopen in new window(data[, dtype])将输入解释为 矩阵open in new window.
matrixopen in new window(data[, dtype, copy])注意:不再建议使用此类,即使对于线性
asmatrixopen in new window(data[, dtype])将输入解释为矩阵。
bmatopen in new window(obj[, ldict, gdict])从字符串,嵌套序列或数组构建矩阵对象。

matlib的替换函数

methoddescription
emptyopen in new window(shape[, dtype, order])返回给定形状和类型的新矩阵,而无需初始化条目。
zerosopen in new window(shape[, dtype, order])返回给定形状和类型的矩阵,并用零填充。
onesopen in new window(shape[, dtype, order])一个矩阵。
eyeopen in new window(n[, M, k, dtype, order])返回一个矩阵,在对角线上有一个,在其他地方为零。
identityopen in new window(n[, dtype])返回给定大小的平方单位矩阵。
repmatopen in new window(a, m, n)重复从0D到2D数组或矩阵MxN次。
randopen in new window(*args)返回具有给定形状的随机值矩阵。
randnopen in new window(*args)返回一个随机矩阵,其中包含来自“标准正态”分布的数据。