y-axis only absolute values
조회 수: 15 (최근 30일)
이전 댓글 표시
Hi folks,
Is there a easy way to set the y-axis values to their absolute values such that there are only positive numbers on the y-axis?
Thank you for answers,
Cheers Sam
댓글 수: 1
José-Luis
2014년 6월 13일
What do you want to do about the negative values in your plot? Just not show them?
답변 (2개)
dpb
2014년 6월 13일
Sure,
plot(x,abs(y))
I'm guessing that's not what you mean, precisely, however. If you mean instead to simply display abs() of tick labels even if the y-limits include some negatives, then try
set(gca,'yticklabel',num2str(abs(get(gca,'ytick').')))
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!