adding two ticks to form a horizontal line
이전 댓글 표시
How do I add two ticks in the plot editor so that it gives me a perfect horizontal straight line?
답변 (2개)
Jonas
2021년 6월 30일
if you want to add a horizontal line to you plot you can use yline. if you want a ytick at that specific value you can write
yline(3.3614);
yticks(unique([yticks() 3.3614]));
댓글 수: 4
shahriar sowad
2021년 6월 30일
편집: shahriar sowad
2021년 6월 30일
shahriar sowad
2021년 6월 30일
Jonas
2021년 6월 30일
yes, add the two lines at the end of your code.
note that you just need one 'hold on' command, this will have the effect that all later plots are added to the current figure
shahriar sowad
2021년 6월 30일
카테고리
도움말 센터 및 File Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!