rmnode
从图中删除节点
说明
示例
从图中删除节点
创建并绘制一个图。
s = [1 1 1 2 2 3]; t = [2 3 4 3 4 4]; G = graph(s,t); plot(G)
从图中删除节点 1 并绘制结果。新图中的节点会自动重新编号。
G = rmnode(G,1); plot(G)
从图中删除若干命名节点
创建并绘制一个具有命名节点的图。
s = [1 1 1 1 2 2 3 3 3 5 5]; t = [2 3 4 6 1 5 4 5 6 4 6]; names = {'New York' 'Los Angeles' 'Washington D.C.' 'Pittsburgh' ... 'Denver' 'Austin'}; G = digraph(s,t,[],names); plot(G)
从该图中删除节点 'New York'
和 'Pittsburgh'
,然后重新绘制结果。
G = rmnode(G,{'New York' 'Pittsburgh'}); plot(G,'Layout','force')
输入参数
nodeIDs
— 节点标识符
节点索引 | 节点名称
节点标识符,指定为一个或多个节点索引或节点名称。
下表显示通过数值节点索引或节点名称引用一个或多个节点的不同方法。
形式 | 单一节点 | 多个节点 |
---|---|---|
节点索引 | 标量 示例: | 向量 示例: |
节点名称 | 字符向量 示例: | 字符向量元胞数组 示例: |
字符串标量 示例: | 字符串数组 示例: |
示例: G = rmnode(G,[1 2])
从图 G
中删除节点 1 和节点 2。
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
用法说明和限制:
节点标识符
nodeIDs
必须为输入图G
的节点索引。不支持节点名称。当您在 MATLAB® 中构造
graph
或digraph
对象并将其传递给使用 MATLAB Coder™ 生成的 MEX 函数时,您无法从图对象中删除节点。
基于线程的环境
使用 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)