Info
この質問は閉じられています。 編集または回答するには再度開いてください。
swap a matrix using two vectors
1 回表示 (過去 30 日間)
古いコメントを表示
an =
2
3
5
6
0
1
4
bn =
4
5
1
3
2
6
0
I need to swap these two vectors in the matrix b =
4 3 2 5
1 0 6 2
3 2 5 1
1 件のコメント
回答 (1 件)
the cyclist
2014 年 4 月 24 日
[~,idx] = ismember(b,an)
b_swapped = bn(idx)
3 件のコメント
the cyclist
2014 年 4 月 24 日
My algorithm does direct swap only. Run this code:
an = [2 3 5 6 0 1 4];
bn = [4 5 1 3 2 6 0];
b = [4 3 2 5; ...
1 0 6 2; ...
3 2 5 1];
[~,idx] = ismember(b,an);
b_swapped = bn(idx)
I get
b_swapped =
0 5 4 1
6 2 3 4
5 4 1 6
Isn't this exactly what you want?
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!