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
KSSV 2020-9-27
If A is your array..just transpose it.
iwant = A'
Read about transpose.
  4 个评论
KSSV
KSSV 2020-9-27
Yes you can.....but transpose is what it is called as.
Walter Roberson
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 CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by