numpy中选择特定两行
Posted lyz_fish
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy中选择特定两行相关的知识,希望对你有一定的参考价值。
import numpy as np
matrix = [[1,2,3,4],[5,6,7,8],[4,5,6,7],[4,3,2,1]]]
#比如取第一行和第三行
matrix = np.array(matrix)#转换为array格式
matrix[[0,2],:]
print(matrix)
out : [[1,2,3,4],[4,5,6,7]]
以上是关于numpy中选择特定两行的主要内容,如果未能解决你的问题,请参考以下文章