home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / RLaB 1.15c / help / strsplt < prev    next >
Encoding:
Text File  |  1994-02-21  |  422 b   |  22 lines  |  [TEXT/RLAB]

  1. strsplt:
  2.  
  3. Syntax:    strsplt ( str )
  4.  
  5. Description:
  6.  
  7.     Strsplt returns a row matrix that contains a single character
  8.     string as each element. The resulting matrix has as many
  9.     columns as the input argument had characters.
  10.  
  11.     Example:
  12.  
  13.     > smat = strsplt( "string" )
  14.      smat =
  15.     s  t  r  i  n  g  
  16.     > show(smat)
  17.        name:      smat    
  18.        class:     matrix  
  19.        type:      string  
  20.          nr:      1       
  21.          nc:      6       
  22.