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 中可视化此图
看看这个功能:
文档 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