Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
対応する開始ノードと終了ノードを持つエッジのセットで構成されるグラフがあります。これらは、都市の特定の地域向けに生成されました。このグラフをmatlabで視覚化するにはどうすればよいですか
この機能をチェックしてください:
doc gplot
例:
% Plot half of a "Bucky ball" carbon molecule, placing asterisks at each node: k = 1:30; [B,XY] = bucky; gplot(B(k,k),XY(k,:),'-*') axis square