matlab画图,画出任意两点间的连线图,请高人帮忙呀,谢谢!谢谢!_百度知...
发布网友
发布时间:2023-12-24 02:19
我来回答
共2个回答
热心网友
时间:2024-09-30 02:14
x = [1000,2711;1210,2770;1041,2610;1499,2528;850,2482;1770,2180;1970,2218;...
1790,2155;1333,2175;1140,2100;1320,2070;1215,2052;1160,1870;776,1799;...
1360,1750;1520,1721;1420,1470;1770,1390;1380,1280;1120,1675;978,1668;...
910,1511;1220,1424;1020,1330;1081,1160;600,1511;615,1498;720,1440;...
680,1370;702,1290;731,1220;670,1160;810,1120;708,1131;572,1050;...
878,656;888,592;417,630;];
figure('Name','Point-Line');
hold on;
% plot line
for n = 1:length(x)-1
for m = (n+1):length(x)
plot(x([n,m],1),x([n,m],2),'b-');
end
end
% plot point
plot(x(:,1),x(:,2),'r*'); hold off;
点多,图就难看,好难看,,,
热心网友
时间:2024-09-30 02:09
gplot(triu(ones(length(x))),[x',y']);%连线
hold on;
scatter(x,y,'fill')%点