convert 262144x1 into 1x262144.
1 回表示 (過去 30 日間)
古いコメントを表示
I have the following: 256x1 double, I want to convert it into 1x256 double. How it will be done?
for example if we have 5x1 double:
12
23
34
56
134
Now convert it into like this: 12 23 34 56 134
採用された回答
KSSV
2020 年 9 月 27 日
If A is your array..just transpose it.
iwant = A'
Read about transpose.
4 件のコメント
Walter Roberson
2020 年 9 月 27 日
Yes, you can use reshape() for that, no problem. You can also use
reshape(A, 1, [])
which will automatically figure out the size of A.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!