访问 NumPy 多维数组中的列
给定 NumPy 多维数组,可以使用索引技术有效地检索特定列。要访问第 i 列,请使用以下语法:
<code class="python">array[:, i]</code>
例如:
<code class="python">test = np.array([[1, 2], [3, 4], [5, 6]]) test[:, 0] # Accesses the first column</code>
其输出:
array([1, 3, 5])
相反,要访问第 i 个列行,使用:
<code class="python">array[i, :]</code>
例如:
<code class="python">test[0, :] # Accesses the first row</code>
输出:
array([1, 2])
有关更多详细信息,请参阅 NumPy 参考文献的索引部分。此操作通常很有效,特别是与循环单个元素相比。
以上是如何访问 NumPy 多维数组中的特定列?的详细内容。更多信息请关注PHP中文网其他相关文章!