이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
This file has been updated for a MUCH faster version on large arrays (100k elements plus).
Enjoy.
MATLABs most commonly used 3-d plotting tools surf and mesh require rectangular grids to plot in 3-d, not x,y,z triples. This function converts arrays of x,y,z triples into rectangular grids to use with surf, mesh, etc.
common usage:
[x y z] = xyzplotter(xin,yin,zin)
xin,yin,zin are n x 1 arrays that define your surface. So xin(1),yin(1),zin(1) is the first point in your surface, etc. They do not need to be in any particular order.
Missing values in the grid will be filled in with NaNs. If you would like to interpolate the NaNs, I suggest inpaint_nans, file exchange number 4551. Here is the link:
http://www.mathworks.com/matlabcentral/fileexchange/4551
Andrew Stephens contributed some good ideas to this code, mostly accumarray() and unique() which I didn't know existed before. For now I would like to acknowledge his generous contribution.
인용 양식
Jack Kohoutek (2026). xyzplotter (https://kr.mathworks.com/matlabcentral/fileexchange/25277-xyzplotter), MATLAB Central File Exchange. 검색 날짜: .
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.4.0.0 | This version is orders of magnitude faster than the last version, especially on large arrays. |
||
| 1.3.0.0 | This file has been updated for a MUCH faster version on large arrays (100k elements plus). Please see: http://www.mathworks.com/matlabcentral/fileexchange/35428 Enjoy. |
||
| 1.2.0.0 | Updated code for a very large speed increase with more random datasets, thanks to some help from Andrew Stephens. |
||
| 1.1.0.0 | Addressed numbers 1-3 of the first comment. Thank you very much for the rating and feedback! |
||
| 1.0.0.0 |
