Hello, I have a basic plotting question, I have two Y-variables, one uses all X-axis values while the other Y-variable uses every other X-value; but I still want it to draw a line. How can I do that?
SOA = -230;-190;-150;-110;-70;NaN;70;110;150;190;230
Long_Y = 2.89;2.40;2.61;2.30;0.16;NaN;0.4000;1.45;2.75;3.18;3.41
Short_Y = 1.61;NaN;1.54;NaN;-0.030;NaN;0.10;NaN;1.75;NaN;1.85
thanks,

댓글 수: 1

Jan
Jan 2017년 5월 29일
Let me gess: SOA is the "X-value"? "Every other" is 1:2:end? What have you tried so far? Did a problem occur?

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

 채택된 답변

Star Strider
Star Strider 2017년 5월 29일

0 개 추천

Try this:
figure(1)
plot(SOA, Long_Y, '-pb')
hold on
plot(SOA(1:2:end), Short_Y(1:2:end), '-pr')
hold off
grid

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Animation에 대해 자세히 알아보기

제품

태그

질문:

2017년 5월 29일

댓글:

Jan
2017년 5월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by