📄 get_author_names.m
字号:
%GET_AUTHOR_NAMES: This function gets author names and their special html
% numbers in a cell matrix, "author_names".
%
% Syntax>>
% author_names=get_author_names
%
% Output has class cell array.
function author_names=get_author_names
[next_page list]=get_author_list('http://www.mathworks.com/matlabcentral/fileexchange/loadAuthorIndex.do?orderBy=name&srt1=0');
for m=1:10000000000
url=['http://www.mathworks.com/matlabcentral/fileexchange/loadAuthorIndex.do?current=name&position=' int2str(m) '00'];
[next_page mlist]=get_author_list(url);
list=[list; mlist];
if next_page==0, break, end
end
author_names=sortrows(list);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -