graphloadfromfile.m
来自「复杂网络的一些节点面对攻击的代码」· M 代码 · 共 28 行
M
28 行
function Graph = GraphLoadFromFile(FileName)
% Loads Graph from Mat-file
%
% Receives:
% FileName - string - the name if the file to store the data to. If the file exists, it is overwritten
%
% Returns:
% Graph - Graph Struct - the graph or empty struct.
%
% Created:
% Lev Muchnik 16/08/2005, Tel.: 972-054-4326496, 89 Beacon, Somerville, MA, USA
error(nargchk(1,1,nargin));
error(nargoutchk(0,1,nargout));
try
if exist(FileName,'file')==2
load(FileName,'Graph','-mat');
if ~ObjectIsType(Graph,'Graph','The operation can only be performed on Graphs')
Graph = [];
end
else
Graph = [];
end
catch
Graph = [];
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?