Draw a discontinuous line

조회 수: 6 (최근 30일)
Orongo
Orongo 2018년 10월 24일
댓글: jonas 2018년 10월 24일
Hi, I want to draw a discontinuous line that will later be used in a another plot. For my example I have written following lines
y1 = [0.6 0.6];
y2=[0.3 0.3];
x1 = [0.7 1.3];
x2=[1.8 2.2];
line(x1,y1); hold on
line(x2,y2); hold off
This is fine for 2 lines but I have more. Can this be written differently? Say for example for 10 discontinuous lines?
  댓글 수: 1
Adam
Adam 2018년 10월 24일
You can put your x1, x2,... and y1, y2,... into matrices and loop around the relevant dimension, plotting each piecewise.

댓글을 달려면 로그인하십시오.

채택된 답변

jonas
jonas 2018년 10월 24일
편집: jonas 2018년 10월 24일
Do not use indexed variable names. Build a 2xn matrix instead.
x =
0.7000 1.8000
1.3000 2.2000
y =
0.6000 0.3000
0.6000 0.3000
Build a matrix instead
plot(x,y);
  댓글 수: 2
Orongo
Orongo 2018년 10월 24일
Thanks exactly what I was looking for!
jonas
jonas 2018년 10월 24일
Cheers!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by