% print_without_spaces % print all the items in a list % without any spaces. % Usage: % x = [ 0 0 1 1 0 5 45 ]; % print_without_spaces(x) % prints % 00110545 % % See also PRINT_BITSTRINGS. % 1999-05-07:DAV: David Cary wrote. function print_without_spaces(x) M=length(x); for j=1:M; fprintf(1,'%1.0f',x(j)) end % end print_without_spaces.m