Tiny Axis

버전 1.2.0.0 (1.59 KB) 작성자: Jeroen van Nugteren
This function shows the orientation of the provided axes plot in the lower left corner.
다운로드 수: 501
업데이트 날짜: 2011/8/14

라이선스 보기

This function shows the orientation of the provided axes plot in the lower left corner. This way the orientation can still be seen when the axis are disabled.

At the moment the code is not very advanced. But it might still be usefull to some people.

example:
f = figure('Color',[0.3 0.3 0.32]);
h = axes('Parent',f);
surf(X,Y,Z,'Parent',h);
axis(h,'off');
tinyaxis(h,'r','g','b');

input:
tinyaxis(h,c1,c2,c3);
h - handle of the axes
c1 - x direction color
c2 - y direction color
c3 - z direction color

인용 양식

Jeroen van Nugteren (2024). Tiny Axis (https://www.mathworks.com/matlabcentral/fileexchange/32168-tiny-axis), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2011a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
태그 태그 추가

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.0

The 'current axes' are now left untouched by this function.

1.1.0.0

*Handle visibility of the axes was set to off. This way accidental plots inside the corner axes are prevented.

1.0.0.0