Compare 2 Matrixs Different Dimension With For

I have 2 matrixs with different dimension.
A = [1 1 1 1 2 4 2 3 2 1];
B = [4 1 3 1 2];
The size of matrixs A is 10x1, B is 5x1, i want make matrix C with size (10x5). C is a compare matrix between A and B. If A and B are same the result is 0 and if A and B not same the result is 1.
Example:
C =[1 0 1 0 1;
1 0 1 0 1;
1 0 1 0 1;
1 0 1 0 1;
1 1 1 1 0;
0 1 1 1 1;
1 1 1 1 0;
1 1 0 1 1;
1 1 1 1 0;
1 0 1 0 1; ]

 採用された回答

KSSV
KSSV 2022 年 8 月 16 日

0 投票

A = [1 1 1 1 2 4 2 3 2 1];
B = [4 1 3 1 2];
idx = A'==B
idx = 10×5 logical array
0 1 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0

1 件のコメント

Aldo Milleano
Aldo Milleano 2022 年 8 月 16 日
移動済み: KSSV 2022 年 8 月 16 日
Thank you so much sir, it works

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

製品

リリース

R2018a

質問済み:

2022 年 8 月 16 日

移動済み:

2022 年 8 月 16 日

Community Treasure Hunt

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

Start Hunting!

Translated by