对单元格数组进行排序

时间:2011-08-09 18:47:22

标签: matlab

我想根据第二个条目对行进行排序,即按第二列排序。第二列的每个条目是数组字符(表示时间戳)。也可能缺少值,即第二列中的条目可以是[]。我该怎么做?

2 个答案:

答案 0 :(得分:5)

你需要使用sortrows()函数 如果您想要排序的矩阵是A,那么使用

sorted_matrix = sortrows(A,2);

http://www.mathworks.com/help/techdoc/ref/sortrows.html

答案 1 :(得分:0)

我首先使用函数DATENUM将时间戳从字符串转换为数值。然后,您需要使用占位符替换空单元格的内容,例如NaN。您可以使用函数SORTROWS根据第二列进行排序。这是一个例子:

>> mat = {1 '1/1/10' 3; 4 [] 6; 7 '1/1/09' 9}  %# Sample cell array

mat = 

    [1]    '1/1/10'    [3]
    [4]          []    [6]
    [7]    '1/1/09'    [9]

>> validIndex = ~cellfun('isempty',mat(:,2));  %# Find non-empty indices
>> mat(validIndex,2) = num2cell(datenum(mat(validIndex,2)));  %# Convert dates
>> mat(~validIndex,2) = {NaN};  %# Replace empty cells with NaN
>> mat = sortrows(mat,2)  %# Sort based on the second column

mat = 

    [7]    [733774]    [9]
    [1]    [734139]    [3]
    [4]    [   NaN]    [6]

在这种情况下,NaN值将排序到底部。