double                 package:base                 R Documentation

_D_o_u_b_l_e _P_r_e_c_i_s_i_o_n _V_e_c_t_o_r_s

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

     Create, coerce to or test for a double-precision vector.

_U_s_a_g_e:

     double(length = 0)
     as.double(x, ...)
     is.double(x)

     single(length = 0)
     as.single(x, ...)

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

  length: desired length.

       x: object to be coerced or tested.

     ...: further arguments passed to or from other methods.

_V_a_l_u_e:

     'double' creates a double precision vector of the specified
     length.  The elements of the vector are all equal to '0'.

     'as.double' attempts to coerce its argument to be of double type:
     like 'as.vector' it strips attributes including names.

     'is.double' returns 'TRUE' or 'FALSE' depending on whether its
     argument is of double type or not.  It is generic: you can write
     methods to handle specific classes of objects, see
     InternalMethods.

_N_o_t_e:

     _R has no single precision data type.  All real numbers are stored
     in double precision format_.  The functions 'as.single' and
     'single' are identical to 'as.double' and 'double' except they set
     the attribute 'Csingle' that is used in the '.C' and '.Fortran'
     interface, and they are intended only to be used in that context.

_R_e_f_e_r_e_n_c_e_s:

     Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
     Language_. Wadsworth & Brooks/Cole.

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

     'integer'.

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

     is.double(1)
     all(double(3) == 0)

