draw line graphs connecting two points
显示 更早的评论
Hi,
I want to draw somthing like this. Can I know how to connect two points? thanks.

回答(1 个)
% Fisrt specify the coordinates
pstart = [ones(1,5); (1:5)]
pend = [ones(1,5)+5; (1:5)+9]
% plot the lines
plot([pstart(1,:); pend(1,:)], [pstart(2,:); pend(2,:)])
类别
在 帮助中心 和 File Exchange 中查找有关 Networks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
