资源简介
一个关于复杂网络社团发现的MATLAB工具箱,包括常见的社团发现算法的实现。
代码片段和文件信息
function gui(varargin)
%GUI Community Detection Toolbox Front-End
%%% LOAD DATA %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Data.Graphs = load_data(‘Graphs‘);
Data.Algorithms = load_data(‘Algorithms‘);
Data.Cluster_Number = load_data(‘Cluster_Number‘);
Data.Evaluation = load_data(‘Evaluation‘);
%%% CONSTANTS & VARIABLES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%constants
Pos = struct;
Pos.Gui = [51 51 1210 710 ]; %pixels (the rest are normalized)
Color.tab = [ 0.85 0.85 0.85];
Color.Gui = [ 0.8 0.8 0.8 ];
Color.msg = [ 1 1 1 ]; %white
msgFontSize = 11; %font size for GUI messages
%Panel 1 contains 4 sub-panels
% Graph Algorithm Cluster_NumberEvaluation
% each one for the respective group of functions
Pos.Panel1 = [ 0 0.2 0.65 0.8 ];
Pos.Panel1a = [ 0 0.5 0.5 0.5 ]; %sub-panel a
Pos.add_grf = [ 0 0.9056 0.2 0.0944]; %add function pushbutton
Pos.rm_grf = [ 0.2 0.9056 0.2 0.0944]; %remove function pushbutton
Pos.slc_grf = [ 0 0 1 0.9056]; %selected graph
Pos.Panel1b = [ 0.5 0.5 0.5 0.5 ]; %sub-panel b
Pos.add_alg = [ 0 0.9056 0.2 0.0944]; %add function pushbutton
Pos.edit_alg = [ 0.2 0.9056 0.2 0.0944]; %edit function pushbutton
Pos.rm_alg = [ 0.4 0.9056 0.2 0.0944]; %remove function pushbutton
Pos.slc_alg = [ 0 0.08 1 0.8256]; %selected algorithm
Pos.Panel1c = [ 0 0 0.5 0.5 ]; %sub-panel c
Pos.add_cln = [ 0 0.9056 0.2 0.0944]; %add function pushbutton
Pos.rm_cln = [ 0.2 0.9056 0.2 0.0944]; %remove function pushbutton
Pos.slc_cln = [ 0 0 1 0.9056]; %selected cluster_number
Pos.Panel1d = [ 0.5 0 0.5 0.5 ]; %sub-panel d
Pos.add_eva = [ 0 0.9056 0.2 0.0944]; %add function pushbutton
Pos.rm_eva = [ 0.2 0.9056 0.2 0.0944]; %remove function pushbutton
Pos.slc_eva = [ 0 0 1 0.9056]; %selected evaluation
%Panel 2 contains a preview of the figure produced
Pos.Panel2 = [ 0.65 0.2 0.35 0.8 ];
Pos.Preview = [ 0.12 0.075 0.85 0.85 ];
%Panel 3 contains control buttons and space for the GUI messages
Pos.Panel3 = [ 0 0 1 0.2 ];
Pos.msg = [ 0 0 0.98 0.75 ];
Pos.slider = [ 0.98 0 0.02 0.75 ];
Pos.options = [ 0.01 0.775 0.1 0.2 ];
Pos.variables = [ 0.11 0.775 0.1 0.2 ];
Pos.reseed = [ 0.79 0.775 0.1 0.2 ];
Pos.run_exp = [ 0.89 0.775 0.1 0.2 ];
%%variables
Param.Grf = struct; %the graph function chosen and any parameters
Param.Alg = struct; %the algorithm functions chosen and any parameters
Param.Cln = struct; %the cluster_nu
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 10568 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCAFG.m
文件 3537 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCDanon.m
文件 9903 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCHSLSW.m
文件 11727 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCLFK.m
文件 6798 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCModulMax1.m
文件 8271 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCModulMax2.m
文件 3926 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCModulMax3.m
文件 3887 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCReichardt.m
文件 4037 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCRonhovde.m
文件 7611 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCSpectralClust1.m
文件 1329 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCSpectralClust2.m
文件 22371 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Algorithms\GCStabilityOpt.m
文件 32 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\empty_all.m
文件 819 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\get_args.m
文件 1251 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\get_community_matrix.m
文件 840 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\is_connected.m
文件 1051 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\load_data.m
文件 15761 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\make.m
文件 385 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\PermMat.m
文件 1192 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\PlotGraph.m
文件 1345 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\PlotGraph_gui.m
文件 1031 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\print_status.m
文件 623 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\sec2hms.m
文件 392 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\set_seed.m
文件 412 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\WriteGraph.m
文件 294 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Auxiliary\WriteNum.m
文件 888 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\ClusterValidity\CVIdx.m
文件 772 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Cluster_Number\CNDistba
文件 604 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Cluster_Number\CNFixed.m
文件 778 2014-03-12 19:17 ComDetTBv090社团发现\ComDetTBv090\Cluster_Number\CNGloDens.m
............此处省略45个文件信息
- 上一篇:基于MATLAB的Harris角点检测并精确到亚像素
- 下一篇:PESQ与LSD评价
相关资源
- PESQ与LSD评价
- 基于MATLAB的Harris角点检测并精确到亚
- 变化检测MATLAB代码
- Matlab车道线检测46119
- 基于无线通信基站的室内三维定位问
- NS方程MATLAB
-
matlab与simuli
nk模拟仿真教程 -
MATLAB与simuli
nk教程.rar - retinex by bilateral filter
- Matlab编写NSGA-Ⅱ
- matlab实现手写数字识别
- 节约里程法求解CVP_MATLAB.zip
- 模糊推理系统的matlab代码
- 最小二乘支持向量机MATLAB程序附详细
- matlab实现sift算法的图像拼接
-
直流无刷电机matlab/simuli
nk仿真模型 - matlab robotics toolboox_10.2教程
- matlab车牌识别95542
- slam matlab仿真
- 树叶图像特征分类识别MATLAB程序-青橙
- kmeans图像分类
- GPC广义预测控制matlab例程
- OFDM—MIMO系统的matlab程序
- 克里金插值matlab工具包加
- 场景文字检测(matlab)
- 用MATLAB实现基于小波变换的图像融合
- SIFT算法的MATLAB 代码,可直接运行
- 基于MATLAB的树叶图像特征分类识别
- 数字图像处理作业图像加椒盐噪声加
- MATLAB双三次插值实现图像放大;MATL
评论
共有 条评论