imagescnan.m v2.1 (Aug 2009)

Same as IMAGESC but ignores NaNs.
다운로드 수: 7.2K
업데이트 날짜: 2009/8/20

라이선스 보기

Syntax:
>> imagescnan(Z) % Uncolored NaNs
>> imagescnan(Z,'k') % Colored

IMAGESC is a good option when the user doesn't like the interpolating behaviour of SURF or PCOLOR, because EVERY element is drawn as a single pixel CENTERED with the axis value.

The problem with this function is that it doesn't work properly with NaNs elements (although sometimes SURF neither does): they are drawn with the lower color of the current colormap.

This functions uses IMAGESC but ignores the NaNs elements.

The user can specify the NaNs color, a different color mask, or another value to be ignored.

If the user gives X and Y data with no constant increment, PATCH is used instead of IMAGESC (this is experimental!).

To freeze the colormap check COLORFREEZE and CBFREEZE here at the FileExchange.

(Bugs reports and suggestions will be very appreciated)

인용 양식

Carlos Adrian Vargas Aguilera (2024). imagescnan.m v2.1 (Aug 2009) (https://www.mathworks.com/matlabcentral/fileexchange/20516-imagescnan-m-v2-1-aug-2009), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2008b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Colormaps에 대해 자세히 알아보기

Community Treasure Hunt

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

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

v2.1 Fixed BUG related with RGB image input.

1.1.0.0

V2.0. Totally rewritten code. Do not converts to RGB anymore. Do not freezes the colormap anymore. Do not output any colorbar. New X and Y variable steps accepted input. Now uses patches.

1.0.0.0

1. Fixed color vector BUG found by Greg King.
2. Now accepts RGB images as input.