	
	_S_p_l_i_n_e _I_n_t_e_r_p_o_l_a_t_i_o_n
	
	     spline(x, y, n=3*length(x), xmin=min(x), xmax=max(x),
	             method="fmm")
	
	_A_r_g_u_m_e_n_t_s:
	
	         x,y : vectors giving the coordinates of the points
	               to be interpolated.  Alternatively a single
	               plotting structure can be specified.
	
	           n : interpolation takes place at n equally spaced
	               points spanning the interval [xmin, xmax].
	
	        xmin : left-hand endpoint of the interpolation
	               interval.
	
	        xmax : right-hand endpoint of the interpolation
	               interval.
	
	      method : this specifies the type of spline to be used.
	               Possible values are "fmm", "natural" and
	               "periodic".
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     spline performs cubic spline interpolation of the given
	     data points.  It returns a list containing components
	     x, and y which give the ordinates where interpolation
	     took place and the interpolated values.
	
	     If method="fmm", the spline used is that of Forsythe,
	     Malcolm and Moler (an exact cubic is fitted through the
	     four points at each end of the data, and this is used
	     to determine the end conditions).  Natural splines are
	     used when method="natural" and periodic splines when
	     method="periodic".
	
	_R_e_f_e_r_e_n_c_e_s:
	
	     Forsythe, G. E., M. A. Malcolm and C. B. Moler (1977).
	     Computer Methods for Mathematical Computations.
	
	_S_e_e _A_l_s_o:
	
	     approx, approxfun, splinefun.
	
	_E_x_a_m_p_l_e_s:
	
	     x <- 1:10
	     y <- rnorm(10)
	     plot(x, y)
	     lines(spline(x, y))
	
