vote up 2 vote down star

Is there any subroutine, in MATLAB, that takes in a list of points, and return me a good mesh that I can use to show to my colleagues, such as this?

alt text

Actually, all I need is just a simple 2D mesh generator that takes in a series of X, Y coordinates (that defines the boundary of the area), and give me back a list of elements that can mesh that area well. I can do the rest by using MATLAB command to interpolate the Z value.

Edit : I am not interested to use MATLAB to produce the above looking plot. I am interested in using a MATLAB library to obtain a list of elements so that when I plot those element myself (not in MATLAB itself; but in my own C# program), I can obtain this meshed surface.

PS: I know there is this DistMesh, but I am looking for something simpler - something built-in direct in MATLAB perhaps. And no, meshgrid is not mesh generation.

flag

49% accept rate
2  
The figure you show may be misleading. If I understand correctly, you are starting with a set of points defining a boundary of a region. Do you then want to generate a triangular mesh that creates more points within that region? – gnovice Nov 7 at 3:13
1  
Yes, I want to generate a triangular mesh that creates more points within that region – Ngu Soon Hui Nov 7 at 5:51

4 Answers

vote up -3 vote down

Functions surf and meshgrid might help.

link|flag
meshgrid is not mesh generation – Ngu Soon Hui Nov 6 at 9:04
vote up 0 vote down
  • That picture looks exactly like the one from the griddata documentation. The example in there looks like what you want.
  • SFTOOL will easily make the picture that you show.
  • A thin-plate spline, e.g., TPAPS, should also do the job.
link|flag
sftool is definitely not what I want, whereas the TPAPS seems more applicable to obtain a general big thin surface rather than meshed surfaces. – Ngu Soon Hui Nov 6 at 11:57
vote up 3 vote down

It sounds like you want to create a finite element mesh, starting with a set of points defining a boundary of a region and then generating a triangular mesh that creates more points within that region. I don't think there's a "simple" solution for this problem.

The closest "built-in" solution would probably be the Partial Differential Equation Toolbox, specifically some of the Geometry Algorithms like INITMESH and REFINEMESH.

The link you gave to DistMesh appears to be another good solution. There are also a few submissions on the MathWorks File Exchange that you could take a look at:

link|flag
Persson's pure Matlab DistMesh might be of interest as well: persson.berkeley.edu/software.html for heavy duty meshing, however, I would write the code to a csv file and do a system call to Shewchuk's triangle, however: cs.cmu.edu/~quake/triangle.html – shabbychef Dec 8 at 1:22
vote up 0 vote down

Mesh generation as in Delaunay Triangulation + Steiner Points? There is a builtin Delaunay function in MATLAB.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.