Complex Networks Toolbox for MatLab is designed to analyze large-scale graphs, model them, explore with simulations of dynamic processes and generate appealing and insightful layouts. example: function [BetweenneessCentrality, varargout]= GraphBetweennessCentrality(Graph,SourceNodes) % Computes betweenneess centrality of each node. % % Receives: % Graph - Graph Struct - the graph loaded with GraphLoad % SourceNodes - array of double - (optional) nodes, from which passes start. Default: [] (all nodes). % % Returns: % BetweenneessCentrality - array of double - Betweenneess Centrality for each node. % Nodes - array of double - (optional)List of all nodes for which betweennessn centrality is computed % % Algorithm: % http://www.boost.org/libs/graph/doc/betweenness_centrality.html % % See Also: % mexGraphAllNodeShortestPasses % warning('Use the more optimized mexGraphBetweennessCentrality.dll'); error(nargchk(1,2,nargin)); error(nargoutchk(0,2,nargout)); if ~exist('SourceNodes') | isempty(SourceNodes) SourceNodes = unique(Graph.Data(:,1)); end Nodes = unique(Graph.Data(:,1:2)); %TotalPasses = zeros(GraphCountNumberOfNodes(Graph),GraphCountNumberOfNodes(Graph)); Betweenness = zeros(GraphCountNumberOfNodes(Graph),1); for Node = Nodes(:).' [ShortesPasses PassesHistogram]= mexGraphAllNodeShortestPasses(Graph,Node); %TotalPasses = TotalPasses + sum(PassesHistogram(2:end)); tic for i = 1 : numel(ShortesPasses) %T = ShortesPasses(i).Passes(end); %TotalPasses(Node,ShortesPasses(i).Passes(end)) = size(ShortesPasses(i).Passes,2); % compute total number of shortes passes from Node to some other node. Passes = ShortesPasses(i).Passes(2:end-1,:); NodesOnTheWay = unique(Passes); if numel(NodesOnTheWay)==1 Count = 1; % hist behaves differently in this case. else Count = hist(Passes(:),NodesOnTheWay);
2022-04-26 20:46:45 24.47MB 复杂网络 连锁故障
1
真实世界网络分析(复杂网络) 荷兰代尔夫特理工大学复杂网络 - 从自然到人造网络 (ET4389) 课程的最终作业(2013 年) 确定和分析现实世界网络(荷兰足球)的拓扑特性及其物理意义。 此外,研究各种网络模型,如 Erdos-Renyi 随机网络和 Barabasi-Albert 无标度网络。 最后,在研究这些过程下的性能和鲁棒性的同时,对这些网络模型执行诸如渗透、攻击和意见交互等动态过程。 团队成员:Mani Prashanth Varma Manthena、Alon Dolev 作业:[ET4389作业2013](作业/ET4389作业2013.pdf) 报告:[最终作业报告](作业/最终作业报告.pdf)
2022-04-24 19:40:38 80.56MB C++
1
定义一个名为 的复数类,其属性数据为复数的实部和虚部,要求构造函数和拷贝构造函数,并能打印复数的值
2022-04-13 00:50:50 151KB complex
1
有关复杂变量的本文适用于谁进行了实际分析入门课程。 提供简洁明了的处理方法,可以提供仔细而完整的解释以及许多问题和解决方案。
2022-04-02 18:00:49 7.42MB 数学
1
复模指示功能(奇异值分解) CMIF 定义为从正常矩阵求解的特征值,该矩阵由频率响应函数 (FRF) 矩阵形成。 CMIF可以通过将正常矩阵与其Hermitian矩阵相乘来计算,也可以通过在每个谱线处对正常矩阵进行奇异值分解(SVD)来计算。 此函数使用“经济规模”SVD 计算 CMIF。 建议在使用 CMIF 之前对输入数据进行带通滤波。 如果您发现此代码对您的应用程序有用,请不要忘记评价它。 如有问题、建议和意见:kalkan76@gmail.com
2022-03-27 20:44:25 1.5MB matlab
1
复分析基础及工程应用 Fundamentals of complex analysis, with applications 2003
2022-03-23 20:59:06 13.54MB math
1
Complex Analysis Ahlfors
2022-03-21 18:48:59 3.08MB Complex Analysis Ahlfors
1
Algorithmic Strategies for Solving Complex Problems in Cryptography 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书
2022-03-19 15:39:38 11MB Algorithmic Strategies Solving Complex
1
复杂事件处理(Complex Event Processing)技术的分析,案例介绍。
1
实现复数类的存储、加减乘运算,赋值等操作,接口与实现分离
2022-03-12 23:16:12 1KB C++ 复数类 Complex
1