extracting the index of an irregular line on a 2D matrix

4 ビュー (過去 30 日間)
hamed
hamed 2020 年 11 月 27 日
コメント済み: KSSV 2020 年 11 月 27 日
Hi.
I have a 2D matrix and a vector which passes through some samples of this matrix irregularly. The vector values ​​shows the Y values ​​of the samples it passes through. I want to extract the index of each sample of this vector roughly. In other words, I want to know the corresponding index number of each vector sample, in the matrix. Please find attached the image. The vector values ​​are shown in white line passes throgh the 2D matrix (image).
Any suggestions?
Thanks.

回答 (1 件)

KSSV
KSSV 2020 年 11 月 27 日
Read about ismember.
A = rand(10) ;
B = A(randperm(100,10)) ;
[c,ia] = ismember(A(:),B) ;
A(c)
  7 件のコメント
hamed
hamed 2020 年 11 月 27 日
No
KSSV
KSSV 2020 年 11 月 27 日
Then how you expect to extract? For every given t, we will get a complete column of x.

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

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by