Split a column data into multiple columns

77 次查看(过去 30 天)
I have 1000 observations in a column.
I want to convert first 5 element in 1st row
next 5 element in 2nd row and
next 5 in 3rd row and so on....
Please someone told how can I split data.

回答(2 个)

malladi siva kumari
malladi siva kumari 2019-10-21
a=1:1000
a=reshape(a,5,200)
  1 个评论
Walter Roberson
Walter Roberson 2019-10-21
This puts the first 5 as the first column not the first row as required for this purpose

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2019-6-4
Rows_of_5 = reshape(YourVariable, 5, []).';

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by