How do I plot lines with different line widths?

조회 수: 9,397 (최근 30일)
Leor Greenberger
Leor Greenberger 2011년 9월 22일
답변: SHAILENDRA PANDEY 2020년 10월 11일
Hi,
I want to do:
plot(x1,y1,x2,y2,'LineWidth',8)
but the linewidth propery ends up applying to both lines. Do I have to use two plot functions with a hold on command to have line1 a different width than line2? Thanks.
  댓글 수: 2
Jagannadh Kumar
Jagannadh Kumar 2016년 3월 8일
Try writing like this plot(x1,y1,'Linewidth',6,x2,y2,'Linewidth',8)
Ramesh M
Ramesh M 2016년 7월 28일
it works thnx

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

채택된 답변

Fangjun Jiang
Fangjun Jiang 2011년 9월 22일
편집: MathWorks Support Team 2018년 11월 8일
To plot two lines with different line widths, you can use either of these approaches.
1. Return the two “Line” objects as an output argument from the “plot” function and then set the “LineWidth” property for each.
p = plot(x1,y1,x2,y2)
p(1).LineWidth = 5;
p(2).LineWidth = 10;
2. Use the “hold on” command to plot the two lines separately. Specify the line width by setting the “LineWidth” property a name-value pair.
plot(x1,y1,'LineWidth',5)
hold on
plot(x2,y2,'LineWidth',10)
hold off
  댓글 수: 2
Tyler Tomlinson
Tyler Tomlinson 2015년 12월 2일
Thank you that worked great.
Mike Garrity
Mike Garrity 2016년 3월 8일
Just FYI, there is an "official" syntax for setting a property to different values on different objects. However, it's really ugly, and doesn't work everywhere. For example, I don't think that the plot function accepts this form.
It looks like this:
h = plot(x1,y1,x2,y2);
set(h,{'LineWidth'},{5;10})
The property name and property value need to each be a cell array, and the shape of the value cell array has to match the shape of the handle cell array.
That said, you're really better off with 2 calls to set in this case.

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

추가 답변 (3개)

Wayne King
Wayne King 2011년 9월 22일
Hi: You can use handles.
h = plot(x1,y1,x2,y2);
set(h(1),'linewidth',1);
set(h(2),'linewidth',2);

Hari Desanur
Hari Desanur 2016년 11월 15일
편집: Hari Desanur 2016년 11월 15일
The line width for a particular line can be set using line object handles. For example -
l = plot(x1,y1,x2,y2);
l(1).LineWidth = 3; % set line width of 3 for the first line (x1,y1)
l(2).LineWidth = 6;

SHAILENDRA PANDEY
SHAILENDRA PANDEY 2020년 10월 11일
x = 1:.01:10;
y1 = sin(x);
y2 = cos(x);
p = plot(x,y1,x,y2)
set(p,{'LineWidth'},{5;10})
Line width, specified as a positive value in points, where 1 point = 1/72 of an inch. If the line has markers, then the line width also affects the marker edges.
The line width cannot be thinner than the width of a pixel. If you set the line width to a value that is less than the width of a pixel on your system, the line displays as one pixel wide.

카테고리

Help CenterFile Exchange에서 Formatting and Annotation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by