comparison scripts/general/int2str.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents fd0a3ac60b0e
children 2783fa95cab7
comparison
equal deleted inserted replaced
11586:12df7854fa7c 11587:c792872f8942
26 ## 26 ##
27 ## int2str (123) 27 ## int2str (123)
28 ## @result{} "123" 28 ## @result{} "123"
29 ## 29 ##
30 ## s = int2str ([1, 2, 3; 4, 5, 6]) 30 ## s = int2str ([1, 2, 3; 4, 5, 6])
31 ## @result{} s = 31 ## @result{} s =
32 ## 1 2 3 32 ## 1 2 3
33 ## 4 5 6 33 ## 4 5 6
34 ## 34 ##
35 ## whos s 35 ## whos s
36 ## @result{} s = 36 ## @result{} s =
37 ## Attr Name Size Bytes Class 37 ## Attr Name Size Bytes Class
38 ## ==== ==== ==== ===== ===== 38 ## ==== ==== ==== ===== =====
39 ## s 2x7 14 char 39 ## s 2x7 14 char
40 ## @end group 40 ## @end group
41 ## @end example 41 ## @end example
42 ## 42 ##
43 ## This function is not very flexible. For better control over the 43 ## This function is not very flexible. For better control over the
44 ## results, use @code{sprintf} (@pxref{Formatted Output}). 44 ## results, use @code{sprintf} (@pxref{Formatted Output}).
45 ## @seealso{sprintf, num2str, mat2str} 45 ## @seealso{sprintf, num2str, mat2str}
46 ## @end deftypefn 46 ## @end deftypefn
47 47
48 ## Author: jwe 48 ## Author: jwe
49 49