Numpy 的 tile(~)
方法通过重复输入数组指定的次数来返回一个新的 Numpy 数组。
参数
1. a
| array-like
输入数组。
2. reps
| array-like
所需的重复次数 a
。
返回值
如果 a
是标量,则返回标量。否则,返回一个 Numpy 数组。
例子
基本用法
np.tile([3,4], 2)
array([3, 4, 3, 4])
np.tile([5,6], [2,3])
array([[5, 6, 5, 6, 5, 6],
[5, 6, 5, 6, 5, 6]])
在这里,我们按行重复数组[5,6]
两次,按列重复三次。
相关用法
- Python time.tzname()用法及代码示例
- Python time.monotonic()用法及代码示例
- Python time.tzset()用法及代码示例
- Python time.asctime()用法及代码示例
- Python time ctime()用法及代码示例
- Python time.daylight()用法及代码示例
- Python time.perf_counter()用法及代码示例
- Python time mktime()用法及代码示例
- Python time.get_clock_info()用法及代码示例
- Python time.process_time_ns()用法及代码示例
- Python time localtime()用法及代码示例
- Python time.gmtime()用法及代码示例
- Python time sleep()用法及代码示例
- Python time.strptime用法及代码示例
- Python timeit.Timer.print_exc用法及代码示例
- Python time.time()用法及代码示例
- Python time.mktime()用法及代码示例
- Python time.sleep()用法及代码示例
- Python time.thread_time()用法及代码示例
- Python time.strftime用法及代码示例
- Python time.clock_gettime_ns()用法及代码示例
- Python time.tzset用法及代码示例
- Python time.monotonic_ns()用法及代码示例
- Python time.perf_counter_ns()用法及代码示例
- Python time.time_ns()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | tile method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。