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 / seq < prev    next >
Encoding:
Text File  |  1997-04-23  |  524 b   |  21 lines

  1.     
  2.     _S_e_q_u_e_n_c_e _G_e_n_e_r_a_t_i_o_n
  3.     
  4.          seq(from, to)
  5.          seq(from, to, by=)
  6.          seq(from, to, length=)
  7.          seq(along)
  8.     
  9.     _D_e_s_c_r_i_p_t_i_o_n:
  10.     
  11.          The first form above generates the sequence from,
  12.          from+1,..., to.  The second, from, from+by,..., to.
  13.          The third generates a sequence of length equally spaced
  14.          values from from to to.  The last generates the
  15.          sequence 1, 2,..., length(along).
  16.     
  17.     _S_e_e _A_l_s_o:
  18.     
  19.          rep, sequence, row, col.
  20.     
  21.