How do I label pcolor y and x axes please
조회 수: 17 (최근 30일)
이전 댓글 표시
How do i label pcolor axes please
댓글 수: 0
답변 (1개)
Walter Roberson
2020년 12월 3일
img = sort(randi([0 255], 240, 320, 'uint8'));
subplot(1,2,1); imagesc(img); colormap(hot); xlabel('x'); ylabel('y');
subplot(1,2,2); p = pcolor(img); p.EdgeColor = 'none'; colormap(hot); xlabel('x'); ylabel('y');
(The two have diffrent defaults about which direction Y increases.)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Labels and Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!