Matlab如何分组时间范围

时间:2015-09-23 09:05:43

标签: matlab loops time

我有以下时间

1.1
1.15
1.19
1.32
1.69
2.12
2.36
2.86
3.25
3.67
3.77
3.91
...

我希望MALTAB读取时间并将数字存储到数组中,其中数组1将在1-2秒内存储。阵列2将是2-3秒,依此类推。

提前感谢您提供的任何帮助/建议

3 个答案:

答案 0 :(得分:5)

您可以使用accumarray将这些数组存储为单元格数组的单元格,如下所示 -

groups = accumarray(floor(timeseries),timeseries,[],@(x){x})

示例运行 -

>> timeseries
timeseries =
          1.1
         1.15
         1.19
         1.32
         1.69
         2.12
         2.36
         2.86
         3.25
         3.67
         3.77
         3.91
>> groups = accumarray(floor(timeseries),timeseries,[],@(x){x});
>> celldisp(groups)  %// Display cells of output
groups{1} =
          1.1
         1.15
         1.19
         1.32
         1.69
groups{2} =
         2.12
         2.36
         2.86
groups{3} =
         3.25
         3.67
         3.77
         3.91

答案 1 :(得分:1)

t表示您的输入向量。然后

t = sort(t); %// not needed if t is assured to be non-decreasing (as in the example)
result = mat2cell(t(:), diff([0; find(diff([floor(t(:)); NaN]))]));

在你的例子中,这给出了

result{1} =
    1.1000
    1.1500
    1.1900
    1.3200
    1.6900
result{2} =
    2.1200
    2.3600
    2.8600
result{3} =
    3.2500
    3.6700
    3.7700
    3.9100

答案 2 :(得分:0)

我不知道Matlab的确切语法,但是一种方法是在时间变量上使用一个floor函数,它将它们映射到你的时间的整数部分,然后把它们放在同一层的那个相同的数组。