Multiply imline in one figure
조회 수: 2 (최근 30일)
이전 댓글 표시

Hi,
When I am using imline I only get the start and end point of the line(blue), is it possible to start another imline (in black) from the blue line middle (marked as red)?
Thanks
댓글 수: 0
답변 (1개)
Azzi Abdelmalek
2013년 10월 27일
h1 = imline(gca,[10 100], [100 100]);
setColor(h1,[0 1 1]);
h2=imline(gca,[10+50 10+50], [100 200])
setColor(h2,[1 0 0]);
댓글 수: 3
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!