简体   繁体   English

从 numpy 中的一维数组创建方形 nxn 矩阵的最快方法

[英]Fastest way to create a square nxn matrix from 1d array in numpy

Suppose the following numpy array:假设以下 numpy 数组:

arr = np.array([0, 1, 2, 3, 4]) # can be any array

I want to know the fastest way to generate the following operation:我想知道生成以下操作的最快方法:

n = arr.shape[0]
result = np.tile(arr, (n, 1)) - arr.reshape((-1, 1))
print(result):

array([[ 0,  1,  2,  3,  4],
       [-1,  0,  1,  2,  3],
       [-2, -1,  0,  1,  2],
       [-3, -2, -1,  0,  1],
       [-4, -3, -2, -1,  0]])

(1) How to efficiently create matrix "result" (because n >> 0 can be very large)? (1) 如何高效地创建矩阵“结果”(因为 n >> 0 可能非常大)?

(2) Does this matrix have a particular name? (2) 这个矩阵有特定的名称吗?

This is a bit faster:这有点快:

result = arr-arr[:,None]

cursory benchmarks, nothing scientific.粗略的基准,没有科学依据。 (timeit 100 times with arr): (使用 arr 计时 100 次):

          5 items (arr) 100 times   10,000 items (np.arange) once
OP:       0.0006383560000000066     0.7902513520000001
This one: 0.0001735200000000381     0.3640661519999999
Kelly's:  0.00027326299999996806    0.36036748900000015 (see comments)

Comparing the broadcast to scipy.linalg.toeplitz and OP:将广播与scipy.linalg.toeplitz和 OP 进行比较:

N = 1000
arr = np.arange(N)

%timeit np.tile(arr, (N, 1)) - arr.reshape((-1, 1))
1.83 ms ± 53.8 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)

%timeit arr - arr[:, None]
1.11 ms ± 25 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)

%timeit scipy.linalg.toeplitz(-arr, arr)
727 µs ± 21.6 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)
N = 10000
arr = np.arange(N)

%timeit np.tile(arr, (N, 1)) - arr.reshape((-1, 1))
184 ms ± 9.27 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)

%timeit arr - arr[:, None]
85.3 ms ± 597 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)

%timeit scipy.linalg.toeplitz(-arr, arr)
70.6 ms ± 573 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)

It seems that the scipy solution is generally faster.似乎 scipy 解决方案通常更快。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM