How can I draw non planar graph in 3D dimension

I have an edge data.
G=graph(E(:,1),E(:,2))
h=plot(G)
I want to draw it in 3D dimension. Is there any way to do that?
I saw this URL but I do not understand.

4 Comments

DId you tri plot3?
I tried plot3 but MATALB gave me this error
Error using plot3
Not enough input arguments.
How did you use plot3? It needs three inputs.. Show us the code which you have tried.
I only have a edge data. I do not have third input.

Sign in to comment.

Answers (1)

Call plot and specify the 'Layout' to be one of the 3-D layouts, 'force3' or 'subspace3'. Alternately you can specify 'XData', 'YData', and 'ZData' coordinates like the "Custom Graph Node Coordinates" example on the plot function documentation page shows.

Asked:

NA
on 12 Feb 2020

Answered:

on 13 Feb 2020

Community Treasure Hunt

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

Start Hunting!