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.
2 次元配列の特定の行のインデックスを取得したいと考えています。15*15 の配列 (Q) があり、2 行目の最大数のインデックスを取得したいと考えています。このコードを書きましたが、エラーが発生しました:
y=Q(2,:); x=max(y) ??? Subscript indices must either be real positive integers or logicals.
2番目の行の最大値を取得していますが、最大値のインデックスが必要です。インデックスを取得する方法は次のとおりです。
[~, index] = max(y)