[TOC]

blanks

Creating character array of white spaces

Usage

blanks(n)

Example

Input
['abcde';
blanks(5);
'fghij'
blanks(5);
'klmno']
Output
% Output
ans = 
abcde
     
fghij
     
klmno