Plotting a figure from a matrix
1 次查看(过去 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.
0 个评论
采纳的回答
dpb
2023-6-30
A=[1 2; 2 3;2 4;3 5; 5 6; 6 7];
G=graph(A(:,1),A(:,2))
plot(G)
7 个评论
Cris LaPierre
2023-6-30
Node labels have shown up by default since this function was introduced (R2015b)
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 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!