登录
首页 » matlab » iso2mesh-0.8.0

iso2mesh-0.8.0

于 2009-05-16 发布 文件大小:5469KB
0 65
下载积分: 1 下载次数: 53

代码说明:

  基于matlab的二维与三维的建模,里面许多工具函数(Matlab-based two-dimensional and three-dimensional modeling, a number of tools which function)

文件列表:

iso2mesh
........\htm" target=_blank>AUTHOR
........\bbxflatsegment.m
........\bin
........\...\cgalsimp2.exe
........\...\cgalsimp2.mexglx
........\...\cgalsimp2.mexmac
........\...\cgalsurf.exe
........\...\cgalsurf.mexglx
........\...\cgalsurf.mexmac
........\...\gmp-vc80-mt.dll
........\...\meshfix.exe
........\...\meshfix.mexa64
........\...\meshfix.mexglx
........\...\meshfix.mexmac
........\...\mpfr-vc80-mt.dll
........\...\tetgen.exe
........\...\tetgen.mexa64
........\...\tetgen.mexglx
........\...\tetgen.mexmac
........\...\tetview.exe
........\...\tetview.mexglx
........\binsurface.m
........\bwislands.m
........\htm" target=_blank>ChangeLog
........\htm" target=_blank>COPYING
........\deislands2d.m
........\deislands3d.m
........\delendelem.m
........\deletemeshfile.m
........\doc
........\...\Download_and_License.txt
........\...\FAQ.txt
........\...\gendoc.sh
........\...\Get_Started.txt
........\...\INSTALL.txt

........\extractloops.m
........\fillholes3d.m
........\finddisconnsurf.m
........\flatsegment.m
........\getexeext.m
........\getintersecttri.m
........\getplanefrom3pt.m
........\getvarfrom.m
........\imedge3d.m
........\internalpoint.m
........\isoctavemesh.m
........\maxsurf.m
........\mcpath.m
........\meshcentroid.m
........\meshcheckrepair.m
........\meshconn.m
........\meshresample.m
........\mwpath.m
........\neighborelem.m
........\orderloopedge.m
........\qmeshcut.m
........\readasc.m
........\readinr.m
........\htm" target=_blank>README
........\readoff.m
........\readsmf.m
........\readtetgen.m
........\removedupelem.m
........\removedupnodes.m
........\removeisolatednode.m
........\removeisolatedsurf.m
........\s2m.m
........\sample
........\......\brain.tif
........\......\demo_grayscale_ex1.m
........\......\demo_qmeshcut_ex1.m
........\......\demo_shortcut_ex1.m
........\......\demo_surf2mesh_ex1.m
........\......\demo_vol2mesh_ex1.m
........\......\demo_vol2mesh_ex1b.m
........\......\demo_vol2mesh_ex2.m
........\......\demo_vol2mesh_ex3.m
........\......\head.tif
........\......\iso2mesh_bar.tif
........\......\sampleVol2Mesh.mat
........\......\surfmesh_demo.mat
........\saveasc.m
........\saveinr.m
........\saveoff.m
........\savesmf.m
........\savesurfpoly.m
........\smoothbinvol.m
........\smoothsurf.m
........\surf2mesh.m
........\surfaceclean.m
........\surfdiffuse.m
........\surfedge.m
........\thickenbinvol.m
........\htm" target=_blank>TODO
........\v2m.m
........\v2s.m
........\vol2mesh.m
........\vol2restrictedtri.m

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • MSK_GMSK
    该程序产生MSK和GMSK复基带信号,并在同一图中作出二者的功率谱,对处理实际信号时非常有帮助(The complex base signals of MSK and GMSK are produced, respectively. The power spectral density of the two signals are darwn in the same figure, which really helps for pratical signal processing)
    2014-12-05 21:25:44下载
    积分:1
  • SpacePhasorModel
    Space-phasor model of induction motor
    2013-12-16 02:36:18下载
    积分:1
  • 3
    说明:  经典无网格教程的随书算法的例程,属于第三章例程(Classical meshless algorithm tutorial routines with books, belonging to the third chapter routines)
    2009-12-12 18:45:59下载
    积分:1
  • KALMAN1
    MATLAB中用m文件实现卡尔曼滤波算法(M file implementation using MATLAB Kalman filter algorithm)
    2009-02-26 11:33:49下载
    积分:1
  • Heat-Conductoin-2-D
    This programm is to calculate a two dimentional conduction problem.
    2013-07-16 21:15:55下载
    积分:1
  • numerical-integration-for-structural-dynamics
    single degree of freedom numerical integration for structural dynamics
    2013-05-03 03:58:43下载
    积分:1
  • 5
    一道程序编译顺序的考题,涉及到函数调用的先后顺序及运算符号的优先级等问题。下面我展开给你讲。 C的程序编译总是从main函数开始的,这道题的重点在“fun((int)fun(a+c,b),a-c)) ”语句。 系统首先要确定最外层 fun()函数的实参,第一个参数的确定需要递归调用fun()函数(不妨称其为内层函数)。内层函数的两个参数分别为x=a+b=2+8=10、y=b=5,执行函数体x+y=10+5=15,于是得外层函数的参数x=15。其另一个参数y=a-c=2-b=-6,再次执行函数体,得最终返回值x+y=15+(-6)=9。 (Compiling together the sequence of test procedures, involving the sequence of function calls and operator symbols, such as the priority problem. Now I give you to start speaking. Procedures for C compiler always start from the main function and at这道题the focus of " fun ((int) fun (a+ c, b), ac)) " statement. System must first determine the most outer layer of fun () function of real parameters, the first parameters of recursive calls required fun () function (may be called the inner function). Inner function separately for the two parameters x = a+ b = 2+8 = 10, y = b = 5, to execute the function body x+ y = 10+5 = 15, then the outer function parameters were x = 15 . Its another parameter y = ac = 2-b =- 6, once again to execute the function body may eventually return the value of x+ y = 15+ (-6) = 9.)
    2009-03-15 15:36:23下载
    积分:1
  • Arias
    Calculating Arias Intensity of earthquake.
    2010-11-15 22:28:44下载
    积分:1
  • hw5
    hough transform this project applyes hough transform on given picture in order to be able to calculate object in real world
    2009-06-01 18:04:32下载
    积分:1
  • MATLAB-ENVI
    该程序用于matlab读取ENVI标准格式文件,直接运行READFILE,选择需要打开的图像文件即可(The program for the matlab read ENVI standard format files directly run READFILE, select the desired image file can be opened)
    2013-07-16 20:58:19下载
    积分:1
  • 696524资源总数
  • 103930会员总数
  • 47今日下载