フィルターのクリア

swap x and y axis in a matrix

44 ビュー (過去 30 日間)
Maryam Hamrahi
Maryam Hamrahi 2016 年 5 月 31 日
回答済み: Jos (10584) 2016 年 5 月 31 日
I would like to swap x and y axis in a matrix with n rows and two columns.
I have [r1 r2] and I would like to convert it to [r2 r1]
Thanks in advance for any answers!

採用された回答

Jos (10584)
Jos (10584) 2016 年 5 月 31 日
M = [1 10 ; 2 20 ; 3 30]
Mnew = M(:,[2 1]) % by far the easiest
New = fliplr(M)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by