Python matrix m行n列成分を取り出したい
リストの場合
m = [[10, 20], [30, 40]]
print(m[0][1])
20
matrix クラスを使用する場合
NG
import numpy as np
m = [[10, 20], [30, 40]]
mat = np.matrix(m)
mat[0][1]
IndexError: index 1 is out of bounds for axis 0 with size 1
OK
import numpy as np
m = [[10, 20], [30, 40]]
mat = np.matrix(m)
mat[0].A1[1]
20
参考記事
Author And Source
この問題について(Python matrix m行n列成分を取り出したい), 我々は、より多くの情報をここで見つけました https://qiita.com/quryu/items/35377acc10711b3ca6b9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .