⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adjacency.m

📁 该文件是用matlab开发的图论分析工具箱
💻 M
字号:
function W=adjacency(edges,weights,N)%Function W=adjacency(edges,weights,N) computes the weighted %   adjacency matrix of a point and edge set.  For an unweighted %   matrix, set weights equal to ones(1,M) where M is the number %   of edges in the graph.  %%Inputs:    edges - A Mx2 list of M edges indexing into points%           weights - The weights used to determine matrix values.  %               If not specified, uses vector of all ones%           N - Optional number of nodes in the graph.  Used if%               N > max(edges) (i.e., isolated nodes are present)%%Outputs:   W - Adjacency matrix%%%Note: Adjacency matrix is not of the Seidel type %   (i.e. all values are positive)%5/19/03 - Leo Grady% Copyright (C) 2002, 2003 Leo Grady <lgrady@cns.bu.edu>%   Computer Vision and Computational Neuroscience Lab%   Department of Cognitive and Neural Systems%   Boston University%   Boston, MA  02215%% This program is free software; you can redistribute it and/or% modify it under the terms of the GNU General Public License% as published by the Free Software Foundation; either version 2% of the License, or (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.%% Date - $Id: adjacency.m,v 1.2 2003/08/21 17:29:29 lgrady Exp $%========================================================================%%If weights are not specified, use unity weightingif nargin == 1    weights=ones(size(edges,1),1);end%If N is not specified, use maximum values of edgesif nargin < 3    N=max(max(edges));end%Build sparse adjacency matrixW=sparse([edges(:,1);edges(:,2)],[edges(:,2);edges(:,1)], ...    [weights;weights],N,N);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -