

semat(spatial)                               R Documentation

_E_v_a_l_u_a_t_e _K_r_i_g_i_n_g _S_t_a_n_d_a_r_d _E_r_r_o_r _o_f _P_r_e_d_i_c_t_i_o_n _o_v_e_r _a _G_r_i_d

_D_e_s_c_r_i_p_t_i_o_n_:

     Evaluate Kriging standard error of prediction over a
     grid.

_U_s_a_g_e_:

     semat(obj, xl, xu, yl, yu, n, se)

_A_r_g_u_m_e_n_t_s_:

     obj: object returned by `surf.gls'

      xl: limits of the rectangle for grid

      xu:

      yl:

      yu:

       n: use `n'  x  `n' grid within the rectangle

      se: standard error at distance zero as a multiple of
          the supplied covariance. Otherwise estimated, and
          it assumed that a correlation function was sup-
          plied.

_V_a_l_u_e_:

     list with components x, y and z suitable for `contour'
     and `image'.

_S_e_e _A_l_s_o_:

     `surf.gls', `trmat', `prmat'

_E_x_a_m_p_l_e_s_:

     data(topo)
     topo.kr <- surf.gls(2, expcov, topo, d=0.7)
     prsurf <- prmat(topo.kr, 0, 6.5, 0, 6.5, 50)
     contour(prsurf, levels=seq(700, 925, 25))
     sesurf <- semat(topo.kr, 0, 6.5, 0, 6.5, 30)
     contour(sesurf, levels=c(22,25))

