필터 지우기
필터 지우기

Trying to add horizontal line on a graph

조회 수: 1 (최근 30일)
Jack Lakeman
Jack Lakeman 2016년 11월 8일
댓글: Walter Roberson 2016년 11월 8일
So im trying to add a horizontal line to to show the mean gradient to the graph on the bottom.
The mean is -0.0714 and i want to draw this line as a dotted line. iv tried all sorts of things on this forum but cant seem to get it
Thanks in advance

답변 (1개)

Walter Roberson
Walter Roberson 2016년 11월 8일
XL = xlim();
plot( XL, [TheMean, TheMean])
  댓글 수: 2
Jack Lakeman
Jack Lakeman 2016년 11월 8일
Thank you!
But it seems to draw a line 3/4 of the graph and not through the entire graph. And is there any way to change the colour and have it dotted?
It gives me an error message when i try to do it. i must be doing it wonrg
Walter Roberson
Walter Roberson 2016년 11월 8일
Example:
plot(x,y)
x = 1:30;
y = sin(x)+x;
TheMean = mean(y);
plot(x,y)
hold on
XL = xlim();
plot(XL, [TheMean TheMean], 'g--')
hold off

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

카테고리

Help CenterFile Exchange에서 Scalar Volume Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by