comparison scripts/deprecated/java_unsigned_conversion.m @ 19867:9fc020886ae9

maint: Clean up m-files to follow Octave coding conventions. Try to trim long lines to < 80 chars. Use '##' for single line comments. Use '(...)' around tests for if/elseif/switch/while. Abut cell indexing operator '{' next to variable. Abut array indexing operator '(' next to variable. Use space between negation operator '!' and following expression. Use two newlines between endfunction and start of %!test or %!demo code. Remove unnecessary parens grouping between short-circuit operators. Remove stray extra spaces (typos) between variables and assignment operators. Remove stray extra spaces from ends of lines.
author Rik <rik@octave.org>
date Mon, 23 Feb 2015 14:54:39 -0800
parents 4197fc428c7d
children bcf0a288aa6c
comparison
equal deleted inserted replaced
19866:a1acca0c2216 19867:9fc020886ae9
22 ## @deftypefnx {Built-in Function} {} java_unsigned_conversion (@var{new_val}, "local") 22 ## @deftypefnx {Built-in Function} {} java_unsigned_conversion (@var{new_val}, "local")
23 ## Query or set the internal variable that controls how integer classes are 23 ## Query or set the internal variable that controls how integer classes are
24 ## converted when Java matrix autoconversion is enabled. When enabled, Java 24 ## converted when Java matrix autoconversion is enabled. When enabled, Java
25 ## arrays of class Byte or Integer are converted to matrices of class uint8 or 25 ## arrays of class Byte or Integer are converted to matrices of class uint8 or
26 ## uint32 respectively. 26 ## uint32 respectively.
27 ## 27 ##
28 ## When called from inside a function with the @qcode{"local"} option, the 28 ## When called from inside a function with the @qcode{"local"} option, the
29 ## variable is changed locally for the function and any subroutines it calls. 29 ## variable is changed locally for the function and any subroutines it calls.
30 ## The original variable value is restored when exiting the function. 30 ## The original variable value is restored when exiting the function.
31 ## @seealso{java_unsigned_autoconversion, java_convert_matrix, debug_java} 31 ## @seealso{java_unsigned_autoconversion, java_convert_matrix, debug_java}
32 ## @end deftypefn 32 ## @end deftypefn