处理多个numpy ndarray(8位int)

2024-09-30 01:24:11 发布

您现在位置:Python中文网/ 问答频道 /正文

我希望创建一个循环过程,在这个过程中,我将遍历一些函数,这些函数将生成numpy ndarrays(8位int)作为输出。这大约是1500次迭代。具体而言,代码的形式如下:

def process0(X_variable):
    output1 = process1(X_variable)
    output2 = process2(output1)
    final_out = process3(output2)
    return final_out 


for number in range(len(totals)):
    X_variable = various[number]
    final_out = process0(X_variable)

最后的输出是一个8位int numpy ndarray,有一个可能的形式(130118118),但一般来说,每次迭代的维数可能会改变。 有什么办法可以拯救这些灾难吗?下次我想操纵他们的时候给他们打电话


Tags: 函数代码numpynumber过程defoutvariable

热门问题