本文简要介绍 python 语言中 numpy.bmat
的用法。
用法:
numpy.bmat(obj, ldict=None, gdict=None)
从字符串、嵌套序列或数组构建矩阵对象。
- obj: str 或 数组
输入数据。如果是字符串,则当前作用域中的变量可以按名称引用。
- ldict: 字典,可选
替换当前帧中的本地操作数的字典。如果 obj 不是字符串或 gdict 为 None,则忽略。
- gdict: 字典,可选
替换当前帧中的全局操作数的字典。如果 obj 不是字符串,则忽略。
- out: 矩阵
返回一个矩阵对象,它是一个专门的二维数组。
参数:
返回:
例子:
>>> A = np.mat('1 1; 1 1') >>> B = np.mat('2 2; 2 2') >>> C = np.mat('3 4; 5 6') >>> D = np.mat('7 8; 9 0')
以下所有表达式构造相同的块矩阵:
>>> np.bmat([[A, B], [C, D]]) matrix([[1, 1, 2, 2], [1, 1, 2, 2], [3, 4, 7, 8], [5, 6, 9, 0]]) >>> np.bmat(np.r_[np.c_[A, B], np.c_[C, D]]) matrix([[1, 1, 2, 2], [1, 1, 2, 2], [3, 4, 7, 8], [5, 6, 9, 0]]) >>> np.bmat('A,B; C,D') matrix([[1, 1, 2, 2], [1, 1, 2, 2], [3, 4, 7, 8], [5, 6, 9, 0]])
相关用法
- Python numpy broadcast用法及代码示例
- Python numpy byte_bounds用法及代码示例
- Python numpy block用法及代码示例
- Python numpy broadcast.nd用法及代码示例
- Python numpy busday_offset用法及代码示例
- Python numpy base_repr用法及代码示例
- Python numpy bartlett用法及代码示例
- Python numpy broadcast.size用法及代码示例
- Python numpy blackman用法及代码示例
- Python numpy broadcast.reset用法及代码示例
- Python numpy broadcast_shapes用法及代码示例
- Python numpy busdaycalendar用法及代码示例
- Python numpy bitwise_xor用法及代码示例
- Python numpy binary_repr用法及代码示例
- Python numpy bitwise_and用法及代码示例
- Python numpy broadcast.numiter用法及代码示例
- Python numpy busday_count用法及代码示例
- Python numpy broadcast.iters用法及代码示例
- Python numpy broadcast_to用法及代码示例
- Python numpy broadcast_arrays用法及代码示例
- Python numpy broadcast.ndim用法及代码示例
- Python numpy bincount用法及代码示例
- Python numpy broadcast.index用法及代码示例
- Python numpy bitwise_or用法及代码示例
- Python numpy RandomState.standard_exponential用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.bmat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。