comparison scripts/general/interp3.m @ 7001:8b0cfeb06365

[project @ 2007-10-10 18:02:59 by jwe]
author jwe
date Wed, 10 Oct 2007 18:03:02 +0000
parents ebf96cc00ee9
children 93c65f2a5668
comparison
equal deleted inserted replaced
7000:e87f860624cc 7001:8b0cfeb06365
31 ## @var{z} are either 3-dimensional arrays of the same size as the array 31 ## @var{z} are either 3-dimensional arrays of the same size as the array
32 ## @var{v} in the 'meshgrid' format or vectors. The parameters @var{xi}, etc 32 ## @var{v} in the 'meshgrid' format or vectors. The parameters @var{xi}, etc
33 ## respect a similar format to @var{x}, etc, and they represent the points 33 ## respect a similar format to @var{x}, etc, and they represent the points
34 ## at which the array @var{vi} is interpolated. 34 ## at which the array @var{vi} is interpolated.
35 ## 35 ##
36 ## If @var{x}, @var{y}, @var{z} are ommitted, they are assumed to be 36 ## If @var{x}, @var{y}, @var{z} are omitted, they are assumed to be
37 ## @code{x = 1 : size (@var{v}, 2)}, @code{y = 1 : size (@var{v}, 1)} and 37 ## @code{x = 1 : size (@var{v}, 2)}, @code{y = 1 : size (@var{v}, 1)} and
38 ## @code{z = 1 : size (@var{v}, 3)}. If @var{m} is specified, then 38 ## @code{z = 1 : size (@var{v}, 3)}. If @var{m} is specified, then
39 ## the interpolation adds a point half way between each of the interplation 39 ## the interpolation adds a point half way between each of the interpolation
40 ## points. This process is performed @var{m} times. If only @var{v} is 40 ## points. This process is performed @var{m} times. If only @var{v} is
41 ## specified, then @var{m} is assumed to be @code{1}. 41 ## specified, then @var{m} is assumed to be @code{1}.
42 ## 42 ##
43 ## Method is one of: 43 ## Method is one of:
44 ## 44 ##