change position values between two vectors

Dear all; I have two vectors as seen below , and I want change position between them depend on vector b. The results should be: a=[73 312 135 192 0 122]; b=[2 1 5 4 6 3];
result=[ 312 73 0 192 122 135];
I tried result(b) = a; % and not work.
please help and Thanks in advance.

 採用された回答

Star Strider
Star Strider 2016 年 12 月 25 日

0 投票

This works:
a=[73 312 135 192 0 122];
b=[2 1 5 4 6 3];
Result = a(b)

2 件のコメント

skysky2000
skysky2000 2016 年 12 月 25 日
Thanks alot Star Strider, its work, that really what I want.
Star Strider
Star Strider 2016 年 12 月 25 日
As always, my pleasure.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

質問済み:

2016 年 12 月 25 日

コメント済み:

2016 年 12 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by