I have 2 matrices and want to use them to create another third one.. e.g I have A=[3;7;8;9;2;10] and B=[4,6;1,2;3,5]
i want to replace 1 in B by the 1st element in A, then 2 in B by the 2nd element in A and so on .....so the result will be=[9,10;3,7;8,2]
Any help is much appreciated. Thanks

 채택된 답변

KSSV
KSSV 2021년 6월 22일

0 개 추천

A=[3;7;8;9;2;10];
B=[4,6;1,2;3,5];
C = A(B)
C = 3×2
9 10 3 7 8 2

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

질문:

2021년 6월 22일

댓글:

2021년 6월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by