Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のような行列を持っています:
S =
2.2100 16.0100 0.0100 9.8100 9.4100 0.0100
今、すべての列の最小値の行番号を知りたいです。私が探しているベクトルは次のようになります。
D =
2 3
ご協力ありがとうございました。
[val, ind] = min (S)
そして、あなたは値を持っています:
val = 0.010000 0.010000 ind = 2 3