我创建了一个非常简单的旅行商问题算法,现在我需要以视觉效果输出结果。
我有一个带路径权重的矩阵和一个正确排序的点数组(路径)
互联网上充满了非常复杂和详细的TSP示例(就像DNA研究一样)但我正在寻找一些基本的绘图功能。
答案 0 :(得分:0)
不完全确定要绘制的内容,但假设它只是生成的路径,那很简单:
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)])