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.
我已经创建了一个非常简单的旅行商问题算法,现在我需要将结果输出到可视化图形中。
我有一个带有路径权重的矩阵和一个正确排序的点数组(路径)
互联网上充满了非常复杂和详细的 TSP 示例(例如用于 DNA 研究),但我正在寻找一些基本的绘图功能。
不完全确定您要绘制什么,但假设它只是生成的路径,它非常简单:
x=randperm(10); % Your x coordinates y=randperm(10); % Your y coordinates % Now plot these points and make sure you add 1 term to return to the starting point plot([x x(1)],[y y(1)])