Plotting a figure from a matrix

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.

 采纳的回答

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 个评论

Thank you. This worked. I however could not get my plot to produce the node numbers
dpb
dpb 2023-6-30
编辑:dpb 2023-6-30
Well, does by default as shown for later releases...what release are you running?
You can also try digraph as did @Cris LaPierre to see if it behaves any differently with it.
Will also add a digraph just indicates direction (arrows on the lines)
First time I ever executed it so wasn't aware, @Cris LaPierre :)
My machine died and haven't gotten the updated license file for the rarely used laptop dealt with what with trying to resurrect the other, so can't try anything here.
When should node numbers have begun showing up, @Cris LaPierre?
Node labels have shown up by default since this function was introduced (R2015b)
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 个)

类别

帮助中心File Exchange 中查找有关 Graph and Network Algorithms 的更多信息

产品

版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by