plot a thicker line for my upper and lower specs

조회 수: 1 (최근 30일)
William
William 2013년 2월 1일
The matlab documentation claims that this will give me a thicker line but it keeps generating a syntax error. Any hints on how to thicken this up?
plot(0:600,Cal_12_usl:Cal_12_usl,'r','linestyle','--', LineWidth = 2.0*unit::mm)

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 1일
plot(0:600,Cal_12_usl:Cal_12_usl,'r','linestyle','--', 'LineWidth',8)
  댓글 수: 2
William
William 2013년 2월 1일
I tried this
plot(reordered_data)
ylim([24 34])
hold on
plot(0:600,Cal_12_usl:Cal_12_usl,'r','linestyle','--', 'LineWidth',7)
plot(0:600,Cal_12_lsl:Cal_12_lsl,'r','linestyle','--', 'LineWidth', 7)
hold off
rotate3d off;
still does not get thicker :(
Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 1일
편집: Azzi Abdelmalek 2013년 2월 1일
Check this
t=0:0.1:10;
y1=sin(t);
y2=cos(t);
plot(t,y1,'r','linestyle','--','linewidth',5);
hold on
plot(t,y2,'g','linestyle','--','linewidth',10)

댓글을 달려면 로그인하십시오.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by