home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / numeric < prev    next >
Encoding:
Text File  |  1997-04-23  |  570 b   |  24 lines

  1.     
  2.     _N_u_m_e_r_i_c _V_e_c_t_o_r_s
  3.     
  4.          numeric(n=0)
  5.          as.numeric(x)
  6.          is.numeric(x)
  7.     
  8.     _D_e_s_c_r_i_p_t_i_o_n:
  9.     
  10.          numeric creates a real vector of length n.  The vector
  11.          is filled with zeros.
  12.     
  13.          as.numeric attempts to coerce its argument to numeric
  14.          type (either integer or real).
  15.     
  16.          is.numeric returns TRUE if its argument is of type real
  17.          or type integer and FALSE otherwise.
  18.     
  19.     _N_o_t_e:
  20.     
  21.          R has no single precision data type.  All real numbers
  22.          are stored in double precision format.
  23.     
  24.