how to put long dash as line style in a plot
3 次查看(过去 30 天)
显示 更早的评论
how to put long dash as line style in a plot
0 个评论
回答(1 个)
Star Strider
2016-1-29
Different plots sometimes require different specifications for 'LineStyle' and 'Marker'.
The long dash is the '--' 'LineStyle'.
For example:
x = linspace(0, 2*pi, 250);
y = sin(x);
figure(1)
plot(x, y, '--')
grid
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!