How can I create a Graph with specific coordinates?

조회 수: 58 (최근 30일)
Paula González Díaz
Paula González Díaz 2020년 7월 27일
Hello,
I have two vectors (6,1), one for X coordinates and the other for the Y coordinates. I want to use the function Graph to create a graph that join each (x(i),y(i)) in a specific way, in this case:
s=[1,2,5,5,5,5,6,6,6,6]
t=[3,4,1,2,3,4,1,2,3,4]
graph(s,t)
I don't know how to locate the vertices in my specifc coordinates, If anyone know how to do it I would be grateful.
Thank you so much.

답변 (1개)

Steven Lord
Steven Lord 2020년 7월 27일
When you call plot on your graph you can specify the X, Y, and Z coordinates of the nodes. See the "Custom Graph Node Coordinates" example on the documentation page for the plot for graph objects.
If you want to keep the graph and the coordinate data together, add the coordinates as additional attributes on the graph object.
  댓글 수: 2
Paula González Díaz
Paula González Díaz 2020년 7월 28일
Thank you, but my problem is that I want to create a kind of 'shortest path' optimization program so I think I need to use the Graph function instead of plot but I want every vertice in a specific coordinate position and I don't know if graph can do that.
Frederik Dush Santush Koshta
Frederik Dush Santush Koshta 2021년 11월 22일
Did you find a solution to this problem @Paula González Díaz?

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

카테고리

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

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by