6.6.2 `ltov'
------------

ltov(LIST)
     :: Converts a list into a vector.

RETURN
     vector

LIST
     list

   * Converts a list LIST into a vector of same length.  See also
     `newvect()'.

     [3] A=[1,2,3];
     [4] ltov(A);
     [ 1 2 3 ]

References
     *Note `newvect': newvect, *Note `vtol': vtol.

