📄 alphabetize.m
字号:
function[str]=alphabetize(str)% ALPHABETIZE Sorts a string matrix by its first column% _________________________________________________________________% This is part of JLAB --- type 'help jlab' for more information % (C) 2002, 2004 J.M. Lilly --- type 'help jlab_license' for detailsfirstcol=real(str(:,1));[firstcol,index]=sort(firstcol);str=str(index,:);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -