我有以下Python代码来显示矩阵元素,但它没有显示预期的内容,因为我想显示第一个元素而不是第一行元素。有什么问题?
&&
答案 0 :(得分:0)
用于访问二维数组中的第一行
print('s0=', sx[0,:])) # replace zero with row you want to access
并访问第一个元素。
print('s00=', sx.item(0,0)) # replace 0,0 with the position of element
有关文档{{3}}