Numpy选择特定行列
Posted 算法与编程之美
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Numpy选择特定行列相关的知识,希望对你有一定的参考价值。
问题
方法
import numpy as np
a = np.random.randint(0, 100, (3,3))
print(a)
b = a[:, [0,2]] # 选择所有行, 第1、3列
print(b)
结语
以上是关于Numpy选择特定行列的主要内容,如果未能解决你的问题,请参考以下文章
python中numpy计算数组的行列式numpy.linalg.det()
numpy使用[]语法索引二维numpy数组中指定行列位置的数值内容(access value at certain row and column in numpy array)