numpy.matlib.repmat()是另一个用于在numpy中进行矩阵运算的函数。它返回重复0-D,1-D或2-D数组或矩阵M x N次。
用法: numpy.matlib.repmat(a, m, n)
参数:
a :[数组]要重复的输入数组或矩阵。
m,n:[int]沿第一轴和第二轴重复的次数。
Return :[ndarray]重复数组。
代码1:
# Python program explaining
# numpy.matlib.repmat() function
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
# creating input array using
# array function
in_arr = geek.array([[1, 0, 2], [3, 4, 5]])
print("Input array", in_arr)
# making a new array
# using repmat() function
out_mat = geek.matlib.repmat(in_arr, 2, 3)
print ("Output repeated matrix:", out_mat)
输出:
Input array [[1 0 2] [3 4 5]] Output repeated matrix: [[1 0 2 1 0 2 1 0 2] [3 4 5 3 4 5 3 4 5] [1 0 2 1 0 2 1 0 2] [3 4 5 3 4 5 3 4 5]]
代码2:
# Python program explaining
# numpy.matlib.repmat() function
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
# creating input array using
# arange function
in_arr = geek.arange(3)
print("Input array", in_arr)
# making a new array
# using repmat() function
out_mat = geek.matlib.repmat(in_arr, 2, 2)
print ("Output repeated matrix:", out_mat)
输出:
Input array [0 1 2] Output repeated matrix: [[0 1 2 0 1 2] [0 1 2 0 1 2]]
相关用法
- Python numpy matrix eye()用法及代码示例
- Python numpy matrix ones()用法及代码示例
- Python numpy matrix rand()用法及代码示例
- Python numpy matrix randn()用法及代码示例
- Python numpy matrix identity()用法及代码示例
- Python numpy matrix zeros()用法及代码示例
- Python numpy matrix empty()用法及代码示例
- Numpy string less()用法及代码示例
- Python numpy string greater_equal()用法及代码示例
- Numpy string equal()用法及代码示例
- Numpy string index()用法及代码示例
- Python numpy string less_equal()用法及代码示例
- Numpy string count()用法及代码示例
- Numpy string find()用法及代码示例
- Numpy string join()用法及代码示例
注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 numpy matrix operations | repmat() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。