| Upgrading from MATLAB 4 to MATLAB 5.0 | Search  Help Desk |
New Data Analysis Features
MATLAB 5.0 provided an expanded set of basic data analysis functions.griddata functionality based on Delaunay triangulation
Higher-Dimension Interpolation
The new functionsinterp3 and interpn let you perform three-dimensional and multidimensional interpolation. ndgrid provides arrays that can be used in multidimensional interpolation.griddata Based on Delaunay Triangulation
griddata supports triangle-based interpolation using nearest neighbor, linear, and cubic techniques. It creates smoother contours on scattered data using the cubic interpolation method.
Set Theoretic Functions
The functionsunion, intersect, ismember, setdiff, and unique treat vectors as sets, allowing you to perform operations like union
, intersection
, and difference
of such sets. Other set-theoretical operations include location of common set elements (ismember) and elimination of duplicate elements (unique).