home *** CD-ROM | disk | FTP | other *** search
-
- _S_e_q_u_e_n_c_e _G_e_n_e_r_a_t_i_o_n
-
- seq(from, to)
- seq(from, to, by=)
- seq(from, to, length=)
- seq(along)
-
- _D_e_s_c_r_i_p_t_i_o_n:
-
- The first form above generates the sequence from,
- from+1,..., to. The second, from, from+by,..., to.
- The third generates a sequence of length equally spaced
- values from from to to. The last generates the
- sequence 1, 2,..., length(along).
-
- _S_e_e _A_l_s_o:
-
- rep, sequence, row, col.
-
-