isosurface
Extract isosurface data from volume data
Syntax
Description
An isosurface is a 3-D surface representation of points with equal values in a 3-D
data distribution. The isosurface
function computes and draws a surface by
connecting points of a constant value within a volume of space.
Plot Isosurface
Examples
Input Arguments
Output Arguments
Tips
If you want to specify a custom camera view, lighting, or a different color map of the surface, use the
patch
function to plot the data returned fromisosurface
. You can pass the structure created byisosurface
directly to thepatch
command. For example:s = isosurface(X,Y,Z,V,isovalue); patch(s)
Alternatively, you can pass the individual faces and vertices arrays to patch by specifying property names. For example:
[faces,verts] = isosurface(X,Y,Z,V,isovalue) ; patch('Faces',faces,'Vertices',verts);
Extended Capabilities
Version History
Introduced before R2006a
See Also
isonormals
| shrinkfaces
| smooth3
| contour
| meshgrid
| contourslice