I am new in Matlab that's why I want to know, how to create a graph with edges and also how to access those edges. please help me.

1 Comment

v=[1:n]
e=[2:n,1,n+2:2*n,n+1]
G=graph(v,e)
plot(G)

Sign in to comment.

 Accepted Answer

Guillaume
Guillaume on 12 Nov 2018

0 votes

Your question is so vague that it's impossible to answer it properly.
The only thing we can do is point you to the graph documentation or possibly digraph if your graph is directed. There are plenty of examples there that show how to create, edit, display and work with graphs.

More Answers (0)

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!