很抱歉这个简单的问题,但有没有办法确定一个完全连接的图?我读过一些论文,表明图的总连通性是图分析的先决条件。我通过 Matlab 的一些图形分析工具箱搜索确定连通性的此类函数,但这些工具箱中似乎至少没有提供任何功能。你能给我任何建议吗?非常感谢!
问问题
3576 次
3 回答
1
我不是图论专家,但看起来graphconncomp
可以完成这项工作。
此函数查找图中所有连接的组件,因此如果图是完全连接的,它将返回 S=1 组件,并且 C 将为每个节点包含一个 1。
例如
[S,C] = graphconncomp(G)
if all(C==ones(size(C)))
disp "G is fully connected";
end
于 2013-04-01T13:59:37.433 回答
0
Another option would be to use the FEX function isconnected
, see here.
This will determine if your graph is connected and has 1 as output if connected and 0 otherwise. Only works on undirected graphs though.
于 2014-09-15T08:23:52.273 回答