ismultigraph
确定图是否具有多条边
说明
示例
测试是否有多条边
使用 ismultigraph
确定输入图的两个节点之间是否有多条边。
创建一个图。
G = graph([1 1 1 1 1 2 2 2],[2 2 3 4 5 6 7 8]); plot(G)
检查 G
是否为多重图。结果是逻辑值 1
(true
),因为节点 1 和 2 之间有两条边。
tf = ismultigraph(G)
tf = logical
1
从图中删除多条边
使用 ismultigraph
确定图是否需要简化。
在创建空图并通过 addedge
以编程方式添加边时,常常会遇到重复的边。使用的边数据必须唯一才能避免重复。
为了说明这一点,请创建一个空图和一个包含两列随机数的矩阵。由于随机数只在 1 和 5 之间,因此这些数据会产生多条边。
G = graph; rng default % for reproducibility X = randi(5,15,2)
X = 15×2
5 1
5 3
1 5
5 4
4 5
1 4
2 1
3 5
5 5
5 4
⋮
将所有边都添加到图中,而不用清理源数据来确保行唯一。绘制图作为参考。
G = addedge(G,X(:,1),X(:,2)); plot(G)
测试该图是否为多重图,如果是,则使用 simplify
删除重复的边和自环。
if ismultigraph(G) G = simplify(G); end
绘制所得的图。
plot(G)
输入参数
扩展功能
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
版本历史记录
在 R2018a 中推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)