필터 지우기
필터 지우기

How do I build a labeled Tree?

조회 수: 5 (최근 30일)
Somebody
Somebody 2013년 3월 10일
답변: ag 2024년 9월 24일 10:02
I have a set of node labels (1,2,3,....) and set of pairs of nodes. How do I build a labeled tree in matlab, using this information? Thanks.

답변 (1개)

ag
ag 2024년 9월 24일 10:02
Hi,
To label the nodes in a tree or graph in MATLAB, you can utilize the labelnode function. Below is a code snippet that demonstrates how to achieve this:
s = [1 1 2 2 3 4 5 5];
t = [2 3 3 4 4 5 1 2];
G = digraph(s, t);
h = plot(G);
labelnode(h, [1:5], {'A', 'B', 'C', 'D', 'E'});
For more details, please refer to the MathWorks documentation on LabelNode: https://www.mathworks.com/help/matlab/ref/matlab.graphics.chart.primitive.graphplot.labelnode.html
Hope this helps!

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by