Create character array of blanks
blanks(n)
blanks(n)
returns an array
of n
space characters.
blanks
is useful with the display
function.
For example,
disp(['xxx' blanks(20) 'yyy'])
displays twenty spaces between the character arrays 'xxx'
and 'yyy'
.
disp(blanks(n)')
moves the cursor down n
lines.