linewidth for specific line
이전 댓글 표시
how to specify linewidth for one line in a multi line plot?
댓글 수: 1
Ahmer Ashraf
2020년 2월 23일
I'm bound on linewidth property..I'm completing my assignment but this property is not going me forward.
채택된 답변
추가 답변 (1개)
Star Strider
2017년 1월 6일
Use the hold function and plot them individually:
x = 1:10;
y1 = rand(1, 10);
y2 = 1+rand(1,10);
figure(1)
plot(x, y1)
hold on
plot(x, y2, 'LineWidth',2)
hold off
grid
댓글 수: 2
Noam
2017년 1월 6일
Star Strider
2017년 1월 6일
My pleasure.
If my Answer solved your problem, please Accept it!
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
