sort_molid.m

Contents

Version

2.11

Contact

Please report problems/bugs to michael.holmboe@umu.se

Examples

function sorted_molid=sort_molid(MolID)

Tot_MolID=[];
for i=1:size(MolID,2)
   Tot_MolID=[Tot_MolID;cell2mat(MolID(i))];
end

sorted_molid={sort(Tot_MolID)};