comparison scripts/geometry/griddata3.m @ 14384:4e8f1d1b0d75

maint: periodic merge of stable to default.
author Rik <octave@nomad.inbox5.com>
date Sat, 18 Feb 2012 10:09:15 -0800
parents 079e6f3a0977 cb4f1915db92
children bc924baa2c4e
comparison
equal deleted inserted replaced
14382:e2306a8e054c 14384:4e8f1d1b0d75
15 ## You should have received a copy of the GNU General Public License 15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING. If not, see 16 ## along with Octave; see the file COPYING. If not, see
17 ## <http://www.gnu.org/licenses/>. 17 ## <http://www.gnu.org/licenses/>.
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {@var{vi} =} griddata3 (@var{x}, @var{y}, @var{z}, @var{v} @var{xi}, @var{yi}, @var{zi}) 20 ## @deftypefn {Function File} {@var{vi} =} griddata3 (@var{x}, @var{y}, @var{z}, @var{v}, @var{xi}, @var{yi}, @var{zi})
21 ## @deftypefnx {Function File} {@var{vi} =} griddata3 (@var{x}, @var{y}, @var{z}, @var{v} @var{xi}, @var{yi}, @var{zi}, @var{method}) 21 ## @deftypefnx {Function File} {@var{vi} =} griddata3 (@var{x}, @var{y}, @var{z}, @var{v}, @var{xi}, @var{yi}, @var{zi}, @var{method})
22 ## @deftypefnx {Function File} {@var{vi} =} griddata3 (@var{x}, @var{y}, @var{z}, @var{v} @var{xi}, @var{yi}, @var{zi}, @var{method}, @var{options}) 22 ## @deftypefnx {Function File} {@var{vi} =} griddata3 (@var{x}, @var{y}, @var{z}, @var{v}, @var{xi}, @var{yi}, @var{zi}, @var{method}, @var{options})
23 ## 23 ##
24 ## Generate a regular mesh from irregular data using interpolation. 24 ## Generate a regular mesh from irregular data using interpolation.
25 ## The function is defined by @code{@var{y} = f (@var{x},@var{y},@var{z})}. 25 ## The function is defined by @code{@var{v} = f (@var{x}, @var{y}, @var{z})}.
26 ## The interpolation points are all @var{xi}. 26 ## The interpolation points are specified by @var{xi}, @var{yi}, @var{zi}.
27 ## 27 ##
28 ## The interpolation method can be @code{"nearest"} or @code{"linear"}. 28 ## The interpolation method can be @code{"nearest"} or @code{"linear"}.
29 ## If method is omitted it defaults to @code{"linear"}. 29 ## If method is omitted it defaults to @code{"linear"}.
30 ## 30 ##
31 ## The optional argument @var{options} is passed directly to Qhull when 31 ## The optional argument @var{options} is passed directly to Qhull when