load "$NCARG_ROOT/lib/ncarg/nclex/gsun/gsn_code.ncl"
begin
;
; Create the input arrays.
;
xmin = -2.
xmax = 2.
ymin = -2.
ymax = 2.
zmin = -2.
zmax = 2.
nx = 21
ny = 31
nz = 41
ndata = 1000
xi = new(ndata,float)
yi = new(ndata,float)
zi = new(ndata,float)
ui = new(ndata,float)
do i=0,ndata-1
xi(i) = xmin + (xmax-xmin)*rand()/32767.
yi(i) = ymin + (ymax-ymin)*rand()/32767.
zi(i) = zmin + (zmax-zmin)*rand()/32767.
ui(i) = 0.75*xi(i)*xi(i) - 1.6*yi(i)*yi(i) + 2.*zi(i)*zi(i)
end do
;
; Set up the output grid.
;
xo = fspan(xmin,xmax,nx)
yo = fspan(ymin,ymax,ny)
zo = fspan(zmin,zmax,nz)
;
; Calculate the values for the approximating cubic spline.
;
knots = (/4,4,4/)
uo = csa3s(xi,yi,zi,ui,knots,xo,yo,zo)
;
; Create workstation object.
;
NCGM=1
X11=0
PS=0
if (NCGM .eq. 1) then
wid = gsn_open_wks("ncgm","nm18n")
end if
if (X11 .eq. 1) then
wid = gsn_open_wks("x11","nm18n")
end if
if (PS .eq. 1) then
wid = gsn_open_wks("ps","nm18n")
end if
;
; Draw plot of approximated function.
;
rho = 2.3
theta = -13.
phi = 75.
tdez3d(wid, xo, yo, zo, uo, 0.7, rho, theta, phi, 6)
frame(wid)
end
home |
contents |
defs |
procedures |
examples |
errors