matlab怎么把一列数据按大小分为多列
时间: 2023-07-31 14:09:49 浏览: 149
使用任意数量的多列聚合数据:使用两个 Matlabs 函数,unique 和 accumarray,该函数汇总任意数量的列。-matlab开发
可以使用 `sort` 函数对列数据进行排序,然后使用 `reshape` 函数将排序后的数据按大小分为多列。
以下是示例代码:
```matlab
% 创建一列随机数据
data = randn(10,1);
% 对数据进行排序
sorted_data = sort(data);
% 设置每列数据的长度
col_length = 3;
% 使用 reshape 函数将数据按大小分为多列
res = reshape(sorted_data, col_length, []);
% 显示结果
disp(res);
```
在这个示例中,我们将一列随机数据排序,并将每列数据的长度设置为3。然后使用 reshape 函数将排序后的数据按大小分为多列,输出结果如下:
```
-1.0789 -0.9786 -0.7303
-0.5060 0.1179 0.1469
0.1505 0.3142 0.6931
```
阅读全文