BLANKS Create a blank string

Section: String Functions

Usage

    str = blanks(n)

Create a string str containing n blank charaters.

Example

A simple example:
--> sprintf(['x0123456789y\n','x',blanks(10),'y\n'])

ans = 
x0123456789y
x          y