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!
