필터 지우기
필터 지우기

Need help with the 'Area' function!

조회 수: 2 (최근 30일)
Tim Stark
Tim Stark 2019년 3월 3일
댓글: Tim Stark 2019년 3월 8일
Hey guys,
I have a question regarding the 'Area' function. I have the following code:
A1 = C1(t,1).*25;
A2 = C2(t,1).*-5;
h1 = area(t_Sim(t,1),A1,'LineStyle','none');
hold on
h1(1).FaceColor = [1 0 1];
h2 = area(t_Sim(t,1),A2,'LineStyle','none');
h2(1).FaceColor = [1 0 1];
alpha(.1)
hold off
Resulting in this graph:
The results are perfect, however, I can't get rid of the solid black line at y=0 even though my 'linestyle' is set at 'none'. How can I make sure that this line does not show up?
Am I missing something obvious here? Please let me know! Thanks in advance.

채택된 답변

Harshit Jain
Harshit Jain 2019년 3월 6일
LineStyle refers to the style of line around the area. So if you set LineStyle to 'none', then you'll not get any line around the area. If you want to hide y = 0 line then you should set 'ShowBaseLine' to 'off'. You can refer to documentation for more information

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by