extracting data from matrix
1 回表示 (過去 30 日間)
古いコメントを表示
Hello every bod
let assume matrix
A =
[10 20 1
30 40 2
50 60 3
70 80 4
90 100 5]
B =
[30 40
70 80]
we need to identify the third column of the matrix B, hence
B =
[30 40 2
70 80 4]
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2016 年 7 月 16 日
編集済み: Azzi Abdelmalek
2016 年 7 月 16 日
A= [10 20 1
30 40 2
50 60 3
70 80 4
90 100 5]
B=[30 40
70 80]
idx=ismember(A(:,1:2),B,'rows')
B(:,3)=A(idx,3)
2 件のコメント
Azzi Abdelmalek
2016 年 7 月 16 日
編集済み: Azzi Abdelmalek
2016 年 7 月 16 日
Can you explain? post an example to make your question clear
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!