how to put long dash as line style in a plot
    조회 수: 5 (최근 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!

