get_author_names.m
来自「MAP Toolbox for matlab. World map includ」· M 代码 · 共 20 行
M
20 行
%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 + =
减小字号Ctrl + -
显示快捷键?