配列内の数値の位置を​見つけるにはどうした​らよいですか?

8 views (last 30 days)
MathWorks Support Team
MathWorks Support Team on 14 Nov 2024 at 0:00
Answered: MathWorks Support Team on 14 Nov 2024 at 6:31

ベクトル a = [7 8 8 2 5 6] がある場合、値8の位置をどのように計算すればよいですか?期待する結果は、2と3、または(1,2)と(1,3)です。

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 14 Nov 2024 at 0:00
配列の要素の値に対応する位置を返すには、find関数を使用することができます。例えば:
a = [7 8 8 2 5 6]; linearIndices = find(a==8)
この場合、linearIndicesには以下の値が格納されます:
2 3
行と列のインデックスを個別に取得するには、次のようにします:
[row,col] = find(a==8)
この結果、rowとcolには以下の値が格納されます:
row = 1 1 col = 2 3
もし、一度だけ出現する位置が必要な場合は、find(a==8,1)という構文を使用できます。また、最初または最後の出現位置を特定したい場合は、find(a==8,1,'first')のように方向を指定することも可能です。これらのオプションについての詳細は、findのドキュメントをご参照ください。

More Answers (0)

Categories

Find more on ビッグ データの処理 in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!