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!
