필터 지우기
필터 지우기

how to put long dash as line style in a plot

조회 수: 8 (최근 30일)
masih
masih 2016년 1월 29일
답변: Star Strider 2016년 1월 29일
how to put long dash as line style in a plot

답변 (1개)

Star Strider
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

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by