addedge function not working

조회 수: 1 (최근 30일)
Nicolle Small
Nicolle Small 2021년 3월 29일
댓글: Nicolle Small 2021년 3월 29일
Matlab will not allow me to use the 'addedge' function, i am not sure why. my orginal network is huge so i tried to use it with a smaller graph. here is my script,
p = [0 1 0 1; 1 0 0 0; 0 0 0 0; 1 0 0 0];
plot(graph(p));
addedge(p,3,4);
i understand that the three inputs to the function are the graph 'p' and the nodes i would like the edge added between which i have put 3 and 4.
This is the error message i am receiving. 'Check for missing argument or incorrect argument data type in call to function 'addedge'.'
can anyone help me with how i can get it to work.

답변 (1개)

Steven Lord
Steven Lord 2021년 3월 29일
The addedge function is defined for graph and digraph objects. It is not defined for double arrays. You need to build a graph or digraph object (as you did inside your plot call) and call addedge on that object (with an output argument that will contain the modified graph or digraph.)
  댓글 수: 1
Nicolle Small
Nicolle Small 2021년 3월 29일
Thank you. I will give it another try.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by