How can I join points with line
이전 댓글 표시
I've 4 points. I want to join first two of the with a line and then second two with another line
My desired picture is given below

I can draw the first graph with maker. but but I want to join these points.
Thanks in advance
채택된 답변
추가 답변 (1개)
darova
2020년 1월 13일
Try to reshape data
a1 = reshape(a,[],2);
b1 = reshape(b,[],2);
plot(a1,b1)
% plot(a1',b1') % another variant
카테고리
도움말 센터 및 File Exchange에서 Directed Graphs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!