comparison scripts/strings/strcat.m @ 9036:58604c45ca74

Cleanup of data types related documentation Files: data.texi, numbers.texi, strings.texi, container.texi Use two spaces after a period for increased readibility in Info browser Spellcheck
author Rik <rdrider0-list@yahoo.com>
date Sat, 21 Mar 2009 15:52:41 -0700
parents eb63fbe60fab
children 691b4ba32425
comparison
equal deleted inserted replaced
9035:57649dcecb55 9036:58604c45ca74
21 ## @deftypefn {Function File} {} strcat (@var{s1}, @var{s2}, @dots{}) 21 ## @deftypefn {Function File} {} strcat (@var{s1}, @var{s2}, @dots{})
22 ## Return a string containing all the arguments concatenated 22 ## Return a string containing all the arguments concatenated
23 ## horizontally. If the arguments are cells strings, @code{strcat} 23 ## horizontally. If the arguments are cells strings, @code{strcat}
24 ## returns a cell string with the individual cells concatenated. 24 ## returns a cell string with the individual cells concatenated.
25 ## For numerical input, each element is converted to the 25 ## For numerical input, each element is converted to the
26 ## corresponding ASCII character. Trailing white space is eliminated. 26 ## corresponding ASCII character. Trailing white space is eliminated.
27 ## For example, 27 ## For example,
28 ## 28 ##
29 ## @example 29 ## @example
30 ## @group 30 ## @group
31 ## s = [ "ab"; "cde" ]; 31 ## s = [ "ab"; "cde" ];