Plotting Graph in Matlab
이전 댓글 표시
I want to show dotted line between 81 to 85, how can i show it.
채택된 답변
추가 답변 (1개)
Vartika Agarwal
2022년 5월 12일
0 개 추천
댓글 수: 3
Sam Chak
2022년 5월 12일
Alright, can do this way, but you are encouraged to explore how to display the plot.
d = [73, 77, 81, 85, 89, 93, 100];
plot(d, d, 'd')
hold on
t1 = 70:81;
t2 = 81:85;
t3 = 85:100;
plot(t1, t1, 'b', t2, t2, 'b--', t3, t3, 'b')
hold off

Vartika Agarwal
2022년 5월 12일
Sam Chak
2022년 5월 12일
카테고리
도움말 센터 및 File Exchange에서 Spline Postprocessing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
