a command for changing the place of columns in a matrix directly

2 ビュー (過去 30 日間)
som
som 2011 年 12 月 29 日
Hi all
I have a matrix m-by-n and I want to change the place of columns with an espiciall command in matlab. How can I do this . for Example:
a=[10 20; 20 40; 10 30] chaanged to b=[20 10; 40 20; 30 10]
Thanks for your guidance cheers

採用された回答

Andrew Newell
Andrew Newell 2011 年 12 月 29 日
You can do this with the matrix indices. For the example you give,
b = a(:,[2 1]);

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2011 年 12 月 29 日
In the above case,
b = fliplr(a);
  1 件のコメント
som
som 2011 年 12 月 29 日
Thanks for your good guidance.

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

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by