フィルターのクリア

Conversion of Matrix dimensions

8 ビュー (過去 30 日間)
Fayyaz
Fayyaz 2015 年 5 月 17 日
コメント済み: Star Strider 2015 年 5 月 17 日
Hi
I have a matrix 81 by 81 i.e.
1 2 . . 81
1 a1,1 a1,2 a1,81
.
.
81 a81,1 a81,81
I need to convert it to a matrix of order 6561 (81*81) by 2 i.e.
1=a1,1
2=a1,2
. .
81=a81,81
Any help in this regard would be greatly appreciated. Thanks in advance.
  4 件のコメント
Fayyaz
Fayyaz 2015 年 5 月 17 日
Fayyaz
Fayyaz 2015 年 5 月 17 日
Thanks all for your comments. Problem has been solved. :)

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

採用された回答

Star Strider
Star Strider 2015 年 5 月 17 日
編集済み: Star Strider 2015 年 5 月 17 日
If ‘A’ is your matrix, either use the reshape function:
Av = reshape(A, [], 1);
or simply use the vector default:
Av = A(:);
EDIT — I didn’t see the repeating indices in the first column. To create them, use the repmat function:
Ix = repmat(1:81, 1, 81)';
  2 件のコメント
Fayyaz
Fayyaz 2015 年 5 月 17 日
Both of them are OK. thanks :)
Star Strider
Star Strider 2015 年 5 月 17 日
My pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by