python灵活使用np.expand_dims np.tiley
Posted _刘文凯_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python灵活使用np.expand_dims np.tiley相关的知识,希望对你有一定的参考价值。
np.expand_dims(exist_row, axis=0) 拓展一个维度
np.tile(exist_row,(100, 1)) 将第0维复制100次,第1维复制1次
exist_row = np.array([1,2,3])
exist_row = exist_row.reshape(1,-1)
exist_row = np.expand_dims(exist_row, axis=0)
exist_row = np.tile(exist_row,(100, 1))
exist_row = np.expand_dims(exist_row, axis=0)
exist_row = np.tile(exist_row, (len(jk_list),1,1))
以上是关于python灵活使用np.expand_dims np.tiley的主要内容,如果未能解决你的问题,请参考以下文章