两个维度不同的矩阵进行替换。

조회 수: 10 (최근 30일)
真钱视讯注册官网【359663.tv】
如题,矩阵A=
1 2 1 1
1 2 2 2
1 2 3 3
3 4 1 4
3 4 2 5
3 4 3 6
B=
1 2 3
3 4 5
当B的前两列和A相同时,用B的第三列替换A的第三列,即C= 1 2 3 1
1 2 3 2
1 2 3 3
3 4 5 4
3 4 5 5
3 4 5 6请问要怎么做呢

채택된 답변

真钱视讯代理【gb2032 .com】
C=A;
[Lia,Locb]=ismember(A(:,1:2),B(:,1:2),'rows')
C(Lia,1:3)=B(Locb,:)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB 快速入门에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!