3

我正在使用 Matlab 做 dijkstra 算法。这是我的代码

W = [10 8 5 3 7 2 4 6 21];
DG = sparse([1 1 1 2 2 3 4 5 6],[2 4 3 4 5 6 6 6 1],W)

h = view(biograph(DG,[],'ShowWeights','on'))

[dist,path,pred] = graphshortestpath(DG,1,6)

set(h.Nodes(path),'Color',[1 0.4 0.4])
edges = getedgesbynodeid(h,get(h.Nodes(path),'ID'));
set(edges,'LineColor',[1 0 0])
set(edges,'LineWidth',1.5)

问题是我如何获得最短路径“重置”的红色线条节点和边缘。例如我希望它是,[dist,path,pred] = graphshortestpath(DG,2,3)但图表仍然显示

[dist,path,pred] = graphshortestpath(DG,1,6). 
4

1 回答 1

1

这将做到:

set(h.edges, 'LineColor', [0.5 0.5 0.5])
set(h.edges, 'LineWidth', 0.5)
set(h.nodes, 'Color', [1 1 0.7])

您可以通过简单地检查所有其他可以更改的属性get(h)

还有一些关于设置传记对象属性的在线信息:

http://www.mathworks.com/help/toolbox/bioinfo/ref/setbiograph.html

于 2011-11-10T07:19:58.663 回答