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-M / help / base / c < prev    next >
Encoding:
Text File  |  1997-04-23  |  690 b   |  28 lines

  1.     
  2.     _C_o_m_b_i_n_e _V_a_l_u_e_s _i_n_t_o _a _V_e_c_t_o_r _o_r _L_i_s_t
  3.     
  4.          c(..., recursive=FALSE)
  5.     
  6.     _D_e_s_c_r_i_p_t_i_o_n:
  7.     
  8.          This is a generic function which combines its argu-
  9.          ments.
  10.     
  11.          The default method combines its arguments to form a
  12.          vector.  All arguments are coerced to a common type
  13.          which is the type of the returned value.  If
  14.          recursive=TRUE, the function recursively descends
  15.          through lists combining all their elements into a vec-
  16.          tor.
  17.     
  18.     _S_e_e _A_l_s_o:
  19.     
  20.          unlist.
  21.     
  22.     _E_x_a_m_p_l_e_s:
  23.     
  24.          c(1,7:9)
  25.          c(1:5, 10.5, "next")
  26.          c(options(), recursive=T)
  27.     
  28.