extracting data from matrix

3 次查看(过去 30 天)
Abdelwahab Fawzy
Abdelwahab Fawzy 2016-7-16
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]

回答(1 个)

Azzi Abdelmalek
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 个评论
Abdelwahab Fawzy
Abdelwahab Fawzy 2016-7-16
I tried this code for other different matrices I get a problem at which the third column is not compatible with the first and 2'nd column data in terms of ordering
Azzi Abdelmalek
Azzi Abdelmalek 2016-7-16
编辑:Azzi Abdelmalek 2016-7-16
Can you explain? post an example to make your question clear

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by