利用循环和numpy.tile创建一系列交替值,即(1,-3、5,-7、9,-11 ...)

发布于 2025-01-20 20:22:24 字数 91 浏览 1 评论 0原文

是否可以将loop 和numpy.tile.tile创建交替的增量数组的 可以组合

Is it possible to combine for loop and numpy.tile to create an alternating incremental array?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半山落雨半山空 2025-01-27 20:22:24

numpy.tile(A,reps) 构造通过重复 A 指定次数的数组。由于您想要替换值,因此我认为不可能(或者至少最好)使用此函数来实现您的目标。

仅使用 for 循环(列表理解)怎么样?

output = [i * (1 if i % 4 == 1 else -1) for i in range(1, 25, 2)]

numpy.tile(A, reps) constructs an array by repeating A the number of times given by reps. Since you want to alternate values, I don't think it is possible (or at least, preferable) to use this function to achieve your goal.

How about using only a for loop (list comprehension)?

output = [i * (1 if i % 4 == 1 else -1) for i in range(1, 25, 2)]
〃温暖了心ぐ 2025-01-27 20:22:24

使用resize()

In [38]: np.resize([1,-1], 10) # 10 is the length of result array

Out[38]: array([ 1, -1,  1, -1,  1, -1,  1, -1,  1, -1])

对于奇数长度:

In [39]: np.resize([1,-1], 11)

Out[39]: array([ 1, -1,  1, -1,  1, -1,  1, -1,  1, -1,  1])

use resize():

In [38]: np.resize([1,-1], 10) # 10 is the length of result array

Out[38]: array([ 1, -1,  1, -1,  1, -1,  1, -1,  1, -1])

for odd length:

In [39]: np.resize([1,-1], 11)

Out[39]: array([ 1, -1,  1, -1,  1, -1,  1, -1,  1, -1,  1])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文