取る方法はありますか...
>>> x = np.array([0, 8, 10, 15, 50]).reshape((-1, 1)); ncols = 5
...そしてそれを...に変えます
array([[ 0, 1, 2, 3, 4],
[ 8, 9, 10, 11, 12],
[10, 11, 12, 13, 14],
[15, 16, 17, 18, 19],
[50, 51, 52, 53, 54]])
私はそれを行うことができましたnp.apply_along_axis
...
>>> def myFunc(a, ncols):
return np.arange(a, (a+ncols))
>>> np.apply_along_axis(myFunc, axis=1, arr=x)
そしてfor
ループで...
>>> X = np.zeros((x.size,ncols))
>>> for a,b in izip(xrange(x.size),x):
X[a] = myFunc(b, ncols)
しかし、彼らは遅すぎます。もっと速い方法はありますか?
前もって感謝します。