mapping matrix of two vectors

10 次查看(过去 30 天)
Hi,
If I have two vectors and as shown below. Is there a way to create matrix that mapps each row of A with its correspondent in B? In other words, check row by row of both A and B. Row 1 in A has the value of 1 and corresponds to value of 3 in B, then put one, otherwise put zero.
Thanks.

采纳的回答

Davide Masiello
Davide Masiello 2022-4-7
clear,clc
A = [1;2;3;4];
B = [3;1;4;2];
C = A == B'
C = 4×4 logical array
0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0
  1 个评论
Rajiuddin Sk
Rajiuddin Sk 2023-2-1
Dear Davide,
When the matrix A and B contains symbols, then MATLAB could not find the transformation matrix in above mention method. Can you say how to find the transformation matrix in case of symbolic matrix?

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by