Plotting a figure from a matrix

2 ビュー (過去 30 日間)
Lewis Waswa
Lewis Waswa 2023 年 6 月 30 日
コメント済み: dpb 2023 年 6 月 30 日
I have the following matrix, which describe the connection between nodes on a network. How can I plot this in Matlab?
A=[1 2; 2 3;2 4;3 5; 5 6; 6 7]
The node 1 is connected to 2, the node 2 is conncted to 3 and 4, node 3 is connected to node 5, which is conncted to 6, which is conncted to 7.
How can I plot this in matlab?
Thank you.

採用された回答

dpb
dpb 2023 年 6 月 30 日
A=[1 2; 2 3;2 4;3 5; 5 6; 6 7];
G=graph(A(:,1),A(:,2))
G =
graph with properties: Edges: [6×1 table] Nodes: [7×0 table]
plot(G)
  7 件のコメント
Cris LaPierre
Cris LaPierre 2023 年 6 月 30 日
Node labels have shown up by default since this function was introduced (R2015b)
dpb
dpb 2023 年 6 月 30 日
I would have thought so, too. So wonder what's going on with OP if don't show up for him? Is there a property to turn them on/off?

サインインしてコメントする。

その他の回答 (1 件)

Cris LaPierre
Cris LaPierre 2023 年 6 月 30 日
I would use digraph.
A=[1 2; 2 3;2 4;3 5; 5 6; 6 7] ;
G = digraph(A(:,1),A(:,2));
plot(G)
  1 件のコメント
Lewis Waswa
Lewis Waswa 2023 年 6 月 30 日
Thank you @Cris LaPierre

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by