Writing a Matrix 6x6 in one line

71 ビュー (過去 30 日間)
Leonardo Barbosa Torres dos Santos
Leonardo Barbosa Torres dos Santos 2019 年 4 月 4 日
Dear,
I have a Matrix 6x6,, for example:
A = \begin{bmatrix}
1 & 2 & 3 & 4 & 5 & 6 \\
7 & 8 & 9 & 10 & 11 & 12\\
13 & 14 & 15 & 16 &17 & 18\\
19 & 20 &21 & 22 & 23 &24 \\
25& 26 & 27 & 28 &29 &30 \\
31& 32 & 33 & 34 & 35 & 36
\end{bmatrix}
I would like to write the matrix A6x6 in a line and 36 column, that is (1,36).
For example:
A = [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36]

採用された回答

Adam
Adam 2019 年 4 月 4 日
編集済み: Adam 2019 年 4 月 4 日
A = 1:36;
I may be misunderstanding the question, but if not then it would seem to be that simple?
or
A = A(:)';
if you are starting out with your 6x6 matrix, more generically.
  1 件のコメント
Leonardo Barbosa Torres dos Santos
Leonardo Barbosa Torres dos Santos 2019 年 4 月 5 日
Thank you very much. It works !! \o/

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

その他の回答 (1 件)

Jos (10584)
Jos (10584) 2019 年 4 月 4 日
help reshape

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by