资源简介
BA实现代码,有兴趣的可以看看。
代码片段和文件信息
% This is the BA_Scale Model by Fan Jin.
% At first there are only m nodes and no edge then the m+1st node is
% connected with the above m nodes
% usage: Nodes = BA(Nm)
% the parameter:N----network size
% m----a new node with m new edges
% can randomly initialize the N and the m by yourself
% the diagonal elements of the matrix also equal to -degree
% Nodes----the final coupling matrix
% The following message(s) may not be displayed correctly for they contain Chinese charactors.
% list----生成的一个辅助向量,该向量中的元素为每条边端点的节点。for example 假设网络中节点4的度为7,则在list向量中会存在7个4,而这7个4的位置不一定是连续在一起的。
% preferential attachment体现在随机的从list向量中选取元素,选中哪个元素,该元素表示的节点即被选中。由于list向量中每个节点的个数与它的度有关,因此,度越大的点被选中的概率越大。
function [NodesCii]=BA(Nm)
N=25m=2;
Nodes=zeros(N);
Cii=zeros(1N);
t=zeros(1N);
%Nodes=sparse(N);
for i=1:m
Nodes(im+1)=1;
Nodes(m+1i)=1;
list(i)=i;
end
for i=m+1:2*m
list(i)=m+1;
end
for n=m+2:N
相关资源
-
倒立摆simuli
nk控制仿真.zip - Bacteria Foraging Optimization 多头菌算法
-
position ba
sed dynamics - 船舶航向Backstepping控制器
-
遗传算法工具箱\\genetic\\crtba
se.mma - Matlab批量处理图片
- 基于MATLAB鲁棒控制工具箱的计算机硬
- 蝙蝠算法BA代码
- Feedback Control of Dynamic Systems 7th Editio
- matlab2016a使用vs2017所需附件
- A*算法 A star 算法matlab
- Matlab 2015b win32软件的baidu云盘地址
- AdaBoost等MatLab代码
- 最简单的贝叶斯分类器演示Matlab程序
- 压缩感知代码,matlab,l1qc_logbarrier
- 反步法实现对路径的追踪matlab 实现
- HBMA算法和EMBA算法
-
MIT-BIH Arrhythmia Databa
se 原始数据读取 - AHD算法的matlab实现Bayer转RGB算法
- buck_boost_flyback_dc_dc
- MATLAB模拟篮球比赛常规赛、季后赛对
- 生成BA网络并画度分布图
- 复杂网络中常用的ER网络、BA网络、
- Matlab贝叶斯分类器 (Bayers)程序
- matlab 数据集 banana
- 基于最小错误率的Bayes分类器的MATLA
- 经典matlab图像
- 基于反步法backstepping的船舶直线路径
- matlab 反演法/反步法 程序
- backstepping control 反步法/反演法 matla
评论
共有 条评论