python 在python中绑定一个numpy数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 在python中绑定一个numpy数组相关的知识,希望对你有一定的参考价值。

def BinArray(S, bin=2):
    Sbin = S.reshape((16, int(S.shape[1]/bin), bin, int(S.shape[2]/bin), bin)).sum(axis=4).sum(axis=2)
    print('Binned Array Shape = ', Sbin.shape)
    imshow(Sbin[Mg_K])
    colorbar()
    print('Al-K map mean: ', np.mean(Sbin[Al_K]), ',   Al-K map max:', np.max(Sbin[Al_K]))
    return Sbin

以上是关于python 在python中绑定一个numpy数组的主要内容,如果未能解决你的问题,请参考以下文章

Python 之NumPy

python基础之numpy.reshape详解

python科学计算库

python numpy查询数组是不是有某个数的总个数

numpy如何沿维度拆分数组?

python的科学计算库都有哪些