csa2ls

csa2ls is called to find values for an approximating cubic spline for two-dimensional input data at a list of specified coordinates. If you want to weight the input data values, calculate derivatives, or handle data sparse areas specially, then you will need to use csa2lxs.

Note: This function is only available in version 4.1.1 of NCL. If your site is licensed for version 4.1, then you can get version 4.1.1 for free. To get version 4.1.1 of NCAR Graphics software, please contact your site representative. If you don't know who your site representative is, then send email to ncarginf@ucar.edu or call (303) 497-1201.


Synopsis

    function csa2ls(
        xi[*]    : float,
        yi[*]    : float,
        zi[*]    : float,
        knots[2] : integer
        xo[*]    : float
        yo[*]    : float
    )


Arguments

xi
A one-dimensional array of any size containing the X coordinates of the input data points.
yi
A one-dimensional array of the same size as xi containing the Y coordinates of the input data points.
zi
A one-dimensional array of the same size as xi and yi containing the functional values at the input data coordinates given by xi and yi. zi[k] is the input function value at (xi[k],yi[k]) for k=0 to dimsizes(xi)-1.
knots
The number of knots to be used in constructing the approximating surface. knots(0) and knots(1) must both be at least 4. The larger the value for knots, the closer the approximated surface will come to passing through the input function values.
xo
A one-dimensional array containing the X coordinates of a list of points where functional values are desired. xo can be a single point.
yo
A one-dimensional array containing the Y coordinates of a list of points where functional values are desired. yo can be a single point.

Return value

csa2ls returns a one-dimensional array containing the calculated functional values. If zo is the returned value, then zo has the same size as xo and yo and zo(i) contains the functional value at coordinate (xo(i),yo(i)) for i=0,dimsizes(xo)-1.


Description

csa2ls is in the csagrid package - a software package that implements a cubic spline approximation algorithm to fit a function to input data. The input for the approximation is a set of randomly-spaced data. These data may be one-dimensional, two-dimensional, or three-dimensional.

The general documentation for csagrid contains several complete examples for entries in the csagrid package.


Example

begin

;
;  Create the input arrays.
;
  xmin = -1.4
  xmax =  1.4
  ymin = -1.2
  ymax =  1.2
  
  ndata = 500
  xi = new(ndata,float)
  yi = new(ndata,float)
  zi = new(ndata,float)

  do i=0,ndata-1
    xi(i) = xmin + (xmax-xmin)*rand()/32767.
    yi(i) = ymin + (ymax-ymin)*rand()/32767.
    zi(i) = xi(i) + yi(i)
    t1 = 1.0/((fabs(xi(i)-0.1))^2.75 + fabs(yi(i))^2.75 + 0.09)
    t2 = 1.0/((fabs(xi(i)+0.1))^2.75 + fabs(yi(i))^2.75 + 0.09)
    zi(i) = 0.3*(zi(i)+t1-t2)
  end do

;
;  Find an approximated value at a single point.
;
  knots = (/10,10/)
  xo = 0.
  yo = 0.
  zo = csa2ls(xi,yi,zi,knots,xo,yo)
end

Reference Manual Control Panel

NG4.1 Home, Index, Examples, Glossary, Feedback, Ref Contents, Ref WhereAmI?


$Revision: 1.3 $ $Date: 1999/03/18 22:38:59 $