indegree
节点的入度
说明
示例
所有图节点的入度
创建和绘制有向图,然后计算图中每个节点的入度。节点的入度等于将以该节点为目标节点的边的数量。
s = [1 3 2 2 4 5 1 2]; t = [2 2 4 5 6 6 6 6]; G = digraph(s,t); plot(G)
indeg = indegree(G)
indeg = 6×1
0
2
0
1
1
4
indeg(j)
指示节点 j
的入度。
图节点的子集的入度
创建并绘制一个具有指定节点的有向图。然后计算将 'a'
、'b'
和 'f'
节点作为其目标的边的数量。
s = {'a' 'c' 'b' 'b' 'd' 'e' 'a' 'b'}; t = {'b' 'b' 'd' 'e' 'f' 'f' 'f' 'f'}; G = digraph(s,t); plot(G)
nodeID = {'a' 'b' 'f'}'; indeg = indegree(G,nodeID)
indeg = 3×1
0
2
4
indeg(j)
指示节点 nodeID(j)
的入度。
输入参数
G
— 输入图
digraph
对象
输入图,指定为 digraph
对象。使用 digraph
创建有向图对象。
示例: G = digraph([1 2],[2 3])
nodeIDs
— 节点标识符
节点索引 | 节点名称
节点标识符,指定为一个或多个节点索引或节点名称。
下表显示通过数值节点索引或节点名称引用一个或多个节点的不同方法。
形式 | 单一节点 | 多个节点 |
---|---|---|
节点索引 | 标量 示例: | 向量 示例: |
节点名称 | 字符向量 示例: | 字符向量元胞数组 示例: |
字符串标量 示例: | 字符串数组 示例: |
示例: indegree(G,1)
示例: indegree(G,["A" "B" "C"])
输出参量
D
— 节点的入度
数组
节点的入度,以数值数组形式返回。D
是列向量,除非您指定 nodeIDs
,在这种情况下 D
的大小与 nodeIDs
相同。
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
用法说明和限制:
节点标识符
nodeIDs
必须为输入图G
的一个或多个节点索引。不支持节点名称。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
版本历史记录
在 R2015b 中推出
另请参阅
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)