diff 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
line wrap: on
line diff
--- a/scripts/general/int2str.m	Thu Jan 20 17:24:59 2011 -0500
+++ b/scripts/general/int2str.m	Thu Jan 20 17:35:29 2011 -0500
@@ -28,20 +28,20 @@
 ##      @result{} "123"
 ##
 ## s = int2str ([1, 2, 3; 4, 5, 6])
-##      @result{} s = 
+##      @result{} s =
 ##         1  2  3
 ##         4  5  6
-## 
+##
 ## whos s
-##      @result{} s = 
+##      @result{} s =
 ##       Attr Name        Size                     Bytes  Class
-##       ==== ====        ====                     =====  ===== 
+##       ==== ====        ====                     =====  =====
 ##            s           2x7                         14  char
 ## @end group
 ## @end example
 ##
 ## This function is not very flexible.  For better control over the
-## results, use @code{sprintf} (@pxref{Formatted Output}). 
+## results, use @code{sprintf} (@pxref{Formatted Output}).
 ## @seealso{sprintf, num2str, mat2str}
 ## @end deftypefn