randomly inserting element in 2d matrix

let there is 2 2d matrix A=[1,2;3,1] and B=[5,6;7,8] required output is C=[5,8;0,6;0,7] my code but its not that correct
for i=1:2
for j=1:2
C(A(i,j),end+1)=[B(i,j)];
end
end
is there any correct sloution where i can insert elements, in random rows of 2d matrix.

2 件のコメント

ES
ES 2017 年 3 月 16 日
Your question is not clear. You want to create a matrix C "randomly" with elements from A and B? Try perms, nchoosek, randperm, permute, combvec
Jan
Jan 2017 年 3 月 16 日
I don't get it. Please explain the procedure to create the output.

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

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

質問済み:

2017 年 3 月 16 日

コメント済み:

Jan
2017 年 3 月 16 日

Community Treasure Hunt

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

Start Hunting!

Translated by