Cross Section Isosurface

버전 1.0.0.0 (9.53 MB) 작성자: Evan
easily plot and color 3D data
다운로드 수: 798
업데이트 날짜: 2014/4/15

라이선스 보기

The script "CrossSectionIsosurface.m" is a function for easily plotting subsections and slices of 3D data. While the function "isosurface" generally renders a good isosurface with one function, there are few methods for visualizing slices and subsections of 3D data, and fewer are easy simple to use. This program is an attempt to make plotting subvolumes from a larger 3-Dimensional data set visually appealing and conceptually intuitive, while only being one function. This enables a smoother exploration of 3D data sets.
To use the function simply obtain a 3D matrix filled with data. Following is a simple example where distance from a point is plotted:

>> [x y z] = meshgrid(-5:0.2:5);
>> r = 1 / (x.^2 + y.^2 + z.^2 + 0.1);
>> CrossSectionIsosurface(r)

To see more complex examples, please refer to the testCrossSectionIsosurface.m file. That file explains how to access other options, such as moving the clipping plane (and even displaying a thin slice of data), changing the isovalue of the surface, changing coloration schemes, etc.

인용 양식

Evan (2025). Cross Section Isosurface (https://kr.mathworks.com/matlabcentral/fileexchange/46241-cross-section-isosurface), MATLAB Central File Exchange. 검색 날짜: .

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

Community Treasure Hunt

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

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