I have a 2D graph both x and y axis; however the x and y are in inches and i want to convert them into centimeter
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a 2D graph both x and y axis; however the x and y are in inches and i want to convert them into centimeter. So the x and y axis range is from 0 to 18. I would like it to go from 0 to 45.72
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/153596/image.jpeg)
댓글 수: 0
채택된 답변
Star Strider
2016년 1월 26일
편집: Star Strider
2016년 1월 26일
Use the get and set functions to adjust the tick labels:
xt = get(gca, 'XTick');
set(gca, 'XTick', xt, 'XTickLabel',xt*2.54)
yt = get(gca, 'YTick');
set(gca, 'YTick', yt, 'YTickLabel',yt*2.54)
NOTE: I tested this on another plot. It works.
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!