Find a column number referring to an array

1 回表示 (過去 30 日間)
luca
luca 2019 年 10 月 9 日
コメント済み: Jon 2019 年 10 月 9 日
Given the following
V = [310 285 334 302 306 312 316 304 305 291 310];
M= [273.381 245.231 203.334 212.814 239.183 276.148 231.269 291.846 258.205 276.486 236.715];
I obtain a vector
point= [-304 -291.846]
Now I want to find the column of V and M where I have this result.
In this case: column number 8
May someone help me?

採用された回答

Jon
Jon 2019 年 10 月 9 日
編集済み: Jon 2019 年 10 月 9 日
You could use
idx = find(V==point(1))
or you could check the column the second element of point matched the second row of A using
idx = find(M==point(2))
  1 件のコメント
Jon
Jon 2019 年 10 月 9 日
Had my screen scrolled way over to the right and didn't realize that you had already defined the two vectors V and M. I edited my response to use your variable names.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by