How to change the direction of x axis.
이전 댓글 표시
Hello, i'm working proccesing images with Matlab and i want to change the direction of x axis. Does anyone know how can i do it?. The red are my actual axis, and i want get the white one, so i need to rotate the x axis 180 degrees.
Thank you.

채택된 답변
추가 답변 (2개)
A = imread('ngc6543a.jpg');
imshow(A)
B = fliplr(A);
imshow(B)
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



