• 大小: 107KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: 其他
  • 标签: matlab  

资源简介

把网格化的三维网格图转换为平滑的三维图

资源截图

代码片段和文件信息


% This example shows how a triangular mesh can be resampled on a
% “meshgrid“-generated square grid. We illustrate the usage of
% both functions “gridtrimesh“ and “mxgridtrimesh“. These two should
% produce identical results. Funcion “mxgridtrimesh“ is a compiled
% MEX function written in C and should execute quicker than
% “gridtrimesh“.
%
%
%  
% 下面为演示说明其程序效果         



load beethoven   % load MAT file containing F and V that describes a triangular mesh

nx = 120;  % the size of the grid
ny = 120;  % the size of the grid

% create a grid in x and y
x = linspace(min(V(:1))max(V(:1))nx);
y = linspace(min(V(:2))max(V(:2))ny);
[XY] = meshgrid(xy);

% find corresponding z-values by means of gridtrimesh.m
fprintf([‘gridtrimesh.......‘]); tic
Z = gridtrimes

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-08-24 21:01  gridtrimesh\
     目录           0  2015-08-24 21:01  gridtrimesh\AlphaHull\
     文件        5564  2009-11-18 22:55  gridtrimesh\AlphaHull\AlphaHull.m
     文件        1626  2009-11-06 21:39  gridtrimesh\AlphaHull\TriCircumcenter.m
     目录           0  2015-08-24 21:01  gridtrimesh\AlphaHull\__MACOSX\
     文件          82  2009-11-18 22:55  gridtrimesh\AlphaHull\__MACOSX\._AlphaHull.m
     文件          82  2009-11-06 21:39  gridtrimesh\AlphaHull\__MACOSX\._TriCircumcenter.m
     文件         351  2015-08-12 10:29  gridtrimesh\AlphaHull\ceshi.m
     文件        1276  2015-08-12 14:19  gridtrimesh\AlphaHull\ceshi_laizizuozhe.asv
     文件         342  2015-08-08 15:31  gridtrimesh\AlphaHull\data.txt
     文件       18503  2015-08-11 19:03  gridtrimesh\AlphaHull\data769.txt
     文件       73939  2015-08-11 19:51  gridtrimesh\AlphaHull\dd5028.txt
     文件        1500  2014-03-28 09:35  gridtrimesh\AlphaHull\license.txt
     文件        1301  2015-08-12 14:21  gridtrimesh\AlphaHull\main_ceshi_laizizuozhe.m
     文件       67998  2007-04-13 15:57  gridtrimesh\beethoven.mat
     文件        2195  2015-08-24 20:54  gridtrimesh\demonstration.m
     文件        3513  2007-04-13 18:28  gridtrimesh\gridtrimesh.m
     文件        4077  2007-04-13 15:42  gridtrimesh\mxgridtrimesh.c
     文件        8704  2007-04-13 18:30  gridtrimesh\mxgridtrimesh.dll

评论

共有 条评论